X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=trusty%2Fdebian%2Frules;h=8f70cd7577029e4c42240790d5eb5d722771e48a;hb=56210b1711f569d7bdfe22d4ee74d7e2bad67907;hp=0af17a95eb079f22b4c273fc93ef3201fe6a929e;hpb=88daccfd6f042b9d4e3a9ffe5af6d53c7f8eef36;p=openstack-build%2Fceilometer-build.git diff --git a/trusty/debian/rules b/trusty/debian/rules index 0af17a9..8f70cd7 100755 --- a/trusty/debian/rules +++ b/trusty/debian/rules @@ -1,18 +1,15 @@ #!/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 + dh $@ --with python2,systemd,sphinxdoc 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: @@ -24,6 +21,7 @@ override_dh_install: --namespace ceilometer \ --namespace oslo.db \ --namespace oslo.messaging \ + --namespace oslo.policy \ --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 @@ -38,9 +36,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))) @@ -53,3 +51,11 @@ ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) rm -f $$TEMP_REZ ; testr slowest endif + +override_dh_sphinxdoc: +ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS))) + PYTHONPATH=. sphinx-build -b html doc/source $(CURDIR)/debian/ceilometer-doc/usr/share/doc/ceilometer-doc/html + mkdir -p $(CURDIR)/debian/ceilometer-doc/usr/share/doc/ceilometer-doc/html/_static + touch $(CURDIR)/debian/ceilometer-doc/usr/share/doc/ceilometer-doc/html/_static/toggle.js + dh_sphinxdoc -O--buildsystem=python_distutils +endif