X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=trusty%2Fdebian%2Frules;h=a015e91f9c7911b5fb699641919c73029558eb40;hb=afa99e4bcffa9e75cb5fdad8b4a81ba9c0b85d5a;hp=09236a76a5e2eea83b4821554bfaf024e61de052;hpb=da3ca9c59cac422ab240d3e7efb6f3bd34007723;p=openstack-build%2Fceilometer-build.git diff --git a/trusty/debian/rules b/trusty/debian/rules index 09236a7..a015e91 100755 --- a/trusty/debian/rules +++ b/trusty/debian/rules @@ -4,24 +4,48 @@ include /usr/share/openstack-pkg-tools/pkgos.make +export OSLO_PACKAGE_VERSION=$(VERSION) + %: dh $@ --with python2 +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: + dh_install + + # Manage ceilometer.conf + mkdir -p $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common + PYTHONPATH=. bash tools/config/generate_sample.sh -b . -p ceilometer -o $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common + mv $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf + chmod 0644 $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf + sed -i 's|#connection=|connection=mongodb://localhost:27017/ceilometer|' $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf + override_dh_auto_build: dh_auto_build + /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.config /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.postinst - -override_dh_installchangelogs: - dh_installchangelogs debian/CHANGELOG + /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-api.config + /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-api.postinst override_dh_auto_clean: dh_auto_clean rm -rf debian/*.upstart rm -rf debian/ceilometer-common.postinst + find . -iname '*.pyc' -delete -override_dh_gencontrol: - if dpkg-vendor --derives-from ubuntu ; then \ - dh_gencontrol -- -T$(CURDIR)/debian/ubuntu_control_vars ; \ - else \ - dh_gencontrol -- -T$(CURDIR)/debian/debian_control_vars ; \ - fi +override_dh_auto_test: +ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) + rm -rf .testrepository + testr init + set -e && \ + TEMP_REZ=`mktemp -t` && \ + bash -x ./setup-test-env.sh testr run --subunit 'tests\.(?!.*test_bin.*)' | tee $$TEMP_REZ | subunit2pyunit || true ; \ + cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats || true ; \ + rm -f $$TEMP_REZ ; + testr slowest +endif