X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=trusty%2Fdebian%2Frules;h=bf169c2e474146dbc35ac1587ef6a9dbcc09acac;hb=0f91523ed62e1cd3077a8cc02ce2e7a374faf27c;hp=6ea03010c31bc53023872b498deada5be90659eb;hpb=051ea5a9b8d1d025b47091a24e2f4a5bf9be86bc;p=openstack-build%2Fceilometer-build.git diff --git a/trusty/debian/rules b/trusty/debian/rules index 6ea0301..bf169c2 100755 --- a/trusty/debian/rules +++ b/trusty/debian/rules @@ -4,56 +4,44 @@ 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 .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 + 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 + +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 - -override_dh_builddeb: - dh_builddeb -- -Zxz -z9 - -regen-manifest-patch: - quilt pop -a || true - quilt push install-missing-files.patch - git checkout MANIFEST.in - git ls-files --no-empty-directory --exclude-standard nova | grep -v '.py$$' | sed -n 's/.*/include &/gp' >> MANIFEST.in - quilt refresh - quilt pop -a - -get-vcs-source: - git remote add upstream git://github.com/openstack/$(DEBPKGNAME).git || true - git fetch upstream - if [ ! -f ../$(DEBPKGNAME)_$(VERSION).orig.tar.xz ] ; then \ - git archive --prefix=$(DEBPKGNAME)-$(VERSION)/ $(VERSION) | xz >../$(DEBPKGNAME)_$(VERSION).orig.tar.xz ; \ - fi - if ! git checkout master ; then \ - echo "No upstream branch: checking out" ; \ - git checkout -b master upstream/master ; \ - fi - git checkout debian/experimental + rm -rf debian/ceilometer-common.postinst + find . -iname '*.pyc' -delete + +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