X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=xenial%2Fdebian%2Frules;h=a6374839ec86562b3b4eb87dedfbe9a4390c2f36;hb=e6fe54bcd1ff43cb05fd4431135d59d07423b2f0;hp=94822756c5c88f21275f6d00faf2bbde67e3b49e;hpb=91d6ff7616e8d02d5c8d41beb5a92968f258b3d2;p=openstack-build%2Fceilometer-build.git diff --git a/xenial/debian/rules b/xenial/debian/rules index 9482275..a637483 100755 --- a/xenial/debian/rules +++ b/xenial/debian/rules @@ -1,10 +1,8 @@ #!/usr/bin/make -f -#export DH_VERBOSE=1 - +export HOME="$(CURDIR)/debian/test" include /usr/share/openstack-pkg-tools/pkgos.make - -export OSLO_PACKAGE_VERSION=$(VERSION) +export OSLO_PACKAGE_VERSION=$(shell dpkg-parsechangelog | grep Version: | cut -d' ' -f2 | sed -e 's/^[[:digit:]]*://' -e 's/[-].*//' -e 's/~/.0/' | head -n 1) %: dh $@ --with python2,systemd,sphinxdoc @@ -12,19 +10,26 @@ export OSLO_PACKAGE_VERSION=$(VERSION) override_dh_clean: dh_clean rm -rf .testrepository - rm -rf ceilometer.egg-info rm -f debian/ceilometer-common.config debian/ceilometer-common.postinst debian/ceilometer-api.config debian/ceilometer-api.postinst override_dh_install: + rm -rf $(CURDIR)/debian/tmp + python2.7 setup.py install --install-layout=deb --root $(CURDIR)/debian/tmp dh_install --fail-missing # Manage ceilometer.conf mkdir -p $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common - oslo-config-generator --output-file $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf \ + PYTHONPATH=$(CURDIR)/debian/tmp/usr/lib/python2.7/dist-packages oslo-config-generator \ + --output-file $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf \ + --wrap-width 140 \ --namespace ceilometer \ + --namespace oslo.concurrency \ --namespace oslo.db \ + --namespace oslo.log \ --namespace oslo.messaging \ + --namespace oslo.middleware.cors \ --namespace oslo.policy \ + --namespace oslo.service.service \ --namespace keystonemiddleware.auth_token sed -i 's|[# \t]*auth_protocol[\t ]*=.*|auth_protocol=http|' $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf chmod 0644 $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf @@ -39,9 +44,9 @@ override_dh_auto_build: override_dh_auto_clean: dh_auto_clean - rm -rf debian/*.upstart - rm -rf debian/ceilometer-common.postinst + rm -rf .testrepository find . -iname '*.pyc' -delete + rm -f debian/*.init debian/*.service debian/*.upstart override_dh_auto_test: ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) @@ -49,7 +54,7 @@ ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) testr init set -e ; \ TEMP_REZ=`mktemp -t` ; \ - bash -x ./setup-test-env-mongodb.sh testr run --subunit 'tests\.(?!.*test_bin.*)' | tee $$TEMP_REZ | subunit2pyunit ; \ + bash -x ./debian/setup-test-env-mongodb.sh testr run --subunit 'tests\.(?!(.*test_bin.*|.*functional.*|.*gabbi\.test_gabbi_prefix.*|.*meter\.test_notifications\.TestMeterProcessing\.test_fallback_meter_path.*))' | tee $$TEMP_REZ | subunit2pyunit ; \ cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats ; \ rm -f $$TEMP_REZ ; testr slowest