X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=trusty%2Fdebian%2Frules;h=cdea67b7b8d99521bbfa120d253b2c4c74c6cf24;hb=40ababf7a3fe6165945c19605ae851b845199f3b;hp=1caece13f446753b44550c930fd586681091135f;hpb=80fa93cbfdd671ca4208ef5c1da213036afcf0ed;p=openstack-build%2Fceilometer-build.git diff --git a/trusty/debian/rules b/trusty/debian/rules index 1caece1..cdea67b 100755 --- a/trusty/debian/rules +++ b/trusty/debian/rules @@ -4,33 +4,38 @@ include /usr/share/openstack-pkg-tools/pkgos.make +export OSLO_PACKAGE_VERSION=$(VERSION) + %: dh $@ --with python2 -DEBVERS := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p') -VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/^[[:digit:]]*://' -e 's/[~-].*//') -DEBFLAVOR :=$(shell dpkg-parsechangelog | grep -E ^Distribution: | cut -d" " -f2) -DEBPKGNAME :=$(shell dpkg-parsechangelog | grep -E ^Source: | cut -d" " -f2) - -override_dh_installchangelogs: - dh_installchangelogs debian/CHANGELOG +override_dh_clean: + dh_clean + 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 + install -D -m 0644 $(CURDIR)/etc/ceilometer/ceilometer.conf.sample $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf + install -D -m 0644 $(CURDIR)/etc/ceilometer/policy.json $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/policy.json + install -D -m 0644 $(CURDIR)/etc/ceilometer/sources.json $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/sources.json + install -D -m 0644 $(CURDIR)/etc/ceilometer/pipeline.yaml $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/pipeline.yaml + +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 + /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 - -override_dh_installinit: - if dpkg-vendor --derives-from ubuntu ; then \ - for i in *.upstart.in ; do \ - MYPKG=`echo $i | cut -d. -f1` ; \ - cp $MYPKG.upstart.in $MYPKG.upstart ; \ - done ; \ - fi - dh_installinit --error-handler=true - -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 + rm -rf debian/ceilometer-common.postinst + find . -iname '*.pyc' -delete + +ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) +override_dh_auto_test: + ./run-tests.sh || true + #PYTHONPATH=. nosetests -P || true +endif