X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=trusty%2Fdebian%2Frules;h=09236a76a5e2eea83b4821554bfaf024e61de052;hb=da3ca9c59cac422ab240d3e7efb6f3bd34007723;hp=16c9d19c92416db072c1ff9afef6c2fadc409a9e;hpb=534d7372275ddc96939cc0abe96ab8eda4767ef3;p=openstack-build%2Fceilometer-build.git diff --git a/trusty/debian/rules b/trusty/debian/rules index 16c9d19..09236a7 100755 --- a/trusty/debian/rules +++ b/trusty/debian/rules @@ -2,26 +2,22 @@ #export DH_VERBOSE=1 +include /usr/share/openstack-pkg-tools/pkgos.make + %: 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_auto_build: + dh_auto_build + /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.postinst + +override_dh_installchangelogs: + dh_installchangelogs debian/CHANGELOG 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 + rm -rf debian/ceilometer-common.postinst override_dh_gencontrol: if dpkg-vendor --derives-from ubuntu ; then \ @@ -29,26 +25,3 @@ override_dh_gencontrol: 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