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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#!/usr/bin/make -f
include /usr/share/openstack-pkg-tools/pkgos.make
%:
dh $@ --buildsystem=python_distutils --with python3,systemd
override_dh_clean:
dh_clean -O--buildsystem=python_distutils
rm -rf build \
debian/zaqar-common.postinst \
debian/zaqar-common.config \
debian/zaqar-server.postinst \
debian/zaqar-server.config \
debian/*.service debian/*.init debian/*.upstart
rm -rf debian/*.templates debian/po
override_dh_auto_clean:
python3 setup.py clean
override_dh_auto_build:
/usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func zaqar-common.config
/usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func zaqar-common.postinst
/usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func zaqar-server.config
/usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func zaqar-server.postinst
pkgos-merge-templates zaqar-server zaqar endpoint
pkgos-merge-templates zaqar-common zaqar rabbit ksat
override_dh_auto_test:
echo "Do nothing..."
override_dh_auto_install:
echo "Do nothing..."
override_dh_install:
for i in $(PYTHON3S) ; do \
python$$i setup.py install --install-layout=deb --root=$(CURDIR)/debian/tmp ; \
done
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
export ZAQAR_TESTS_CONFIGS_DIR=$(CURDIR)/zaqar/tests/etc ; pkgos-dh_auto_test --no-py2 'zaqar\.tests\.unit.(?!(.*transport\.websocket.*|.*transport\.wsgi.*|.*test_bootstrap\.TestBootstrap.*|.*storage\.test_impl_sqlalchemy\.SqlalchemyPoolsTest\.test_create_succeeds.*|.*storage\.test_impl_sqlalchemy\.SqlalchemyPoolsTest\.test_create_replaces_on_duplicate_insert.*))'
endif
mkdir -p $(CURDIR)/debian/zaqar-common/usr/share/zaqar-common
PYTHONPATH=$(CURDIR)/debian/tmp/usr/lib/python3/dist-packages oslo-config-generator \
--output-file $(CURDIR)/debian/zaqar-common/usr/share/zaqar-common/zaqar.conf \
--wrap-width 140 \
--namespace zaqar \
--namespace keystonemiddleware.auth_token \
--namespace oslo.cache \
--namespace oslo.log \
--namespace oslo.messaging \
--namespace oslo.middleware.cors \
--namespace osprofiler \
--namespace oslo.policy \
--namespace oslo.reports
pkgos-readd-keystone-authtoken-missing-options $(CURDIR)/debian/zaqar-common/usr/share/zaqar-common/zaqar.conf keystone_authtoken zaqar
mkdir -p $(CURDIR)/debian/zaqar-common/etc/zaqar/policy.d
PYTHONPATH=$(CURDIR)/debian/tmp/usr/lib/python3/dist-packages oslopolicy-sample-generator \
--output-file $(CURDIR)/debian/zaqar-common/etc/zaqar/policy.d/00_default_policy.yaml \
--format yaml \
--namespace zaqar
# Use the policy.d folder
pkgos-fix-config-default $(CURDIR)/debian/zaqar-common/usr/share/zaqar-common/zaqar.conf oslo_policy policy_dirs /etc/zaqar/policy.d
dh_install
dh_missing --fail-missing
for i in zaqar-benchmark.conf logging.conf ; do \
cp etc/$$i.sample $(CURDIR)/debian/zaqar-common/usr/share/zaqar-common/$$i ; \
done
cp etc/zaqar-benchmark-messages.json $(CURDIR)/debian/zaqar-common/usr/share/zaqar-common
override_dh_python3:
dh_python3 --shebang=/usr/bin/python3
|