1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
buildroot = /
python_version = 3
python_lookup_name = python$(python_version)
python = $(shell which $(python_lookup_name))
docdir = /usr/share/doc/packages
version := $(shell \
$(python) -c \
'from kiwi_boxed_plugin.version import __version__; print(__version__)'\
)
tox:
tox
install:
# install plugin manual page and license/readme
# NOTE: this file is not handled through pip because on system level
install -d -m 755 ${buildroot}usr/share/man/man8
gzip -f doc/build/man/kiwi::system::boxbuild.8
install -m 644 doc/build/man/kiwi::system::boxbuild.8.gz \
${buildroot}usr/share/man/man8
install -d -m 755 ${buildroot}${docdir}/python-kiwi_boxed_plugin
install -m 644 LICENSE \
${buildroot}${docdir}/python-kiwi_boxed_plugin/LICENSE
install -m 644 README.rst \
${buildroot}${docdir}/python-kiwi_boxed_plugin/README
build: clean tox
# create setup.py variant for rpm build.
# delete module versions from setup.py for building an rpm
# the dependencies to the python module rpm packages is
# managed in the spec file
sed -ie "s@>=[0-9.]*'@'@g" setup.py
# build the sdist source tarball
$(python) setup.py sdist
# restore original setup.py backed up from sed
mv setup.pye setup.py
# provide rpm source tarball
mv dist/kiwi_boxed_plugin-${version}.tar.gz \
dist/python-kiwi-boxed-plugin.tar.gz
# update rpm changelog using reference file
helper/update_changelog.py \
--since package/python-kiwi_boxed_plugin.changes \
> dist/python-kiwi_boxed_plugin.changes
helper/update_changelog.py \
--file package/python-kiwi_boxed_plugin.changes \
>> dist/python-kiwi_boxed_plugin.changes
# update package version in spec file
cat package/python-kiwi_boxed_plugin-spec-template |\
sed -e s'@%%VERSION@${version}@' \
> dist/python-kiwi_boxed_plugin.spec
# provide rpm rpmlintrc
cp package/python-kiwi_boxed_plugin-rpmlintrc dist
pypi: clean tox
$(python) setup.py sdist upload
clean:
$(python) setup.py clean
rm -rf doc/build
rm -rf dist/*
|