X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=trusty%2Fdebian%2Frules;h=94822756c5c88f21275f6d00faf2bbde67e3b49e;hb=b97ca87d1f10248c08060ed0667f3c2c10dbfb1d;hp=0af17a95eb079f22b4c273fc93ef3201fe6a929e;hpb=88daccfd6f042b9d4e3a9ffe5af6d53c7f8eef36;p=openstack-build%2Fceilometer-build.git diff --git a/trusty/debian/rules b/trusty/debian/rules index 0af17a9..9482275 100755 --- a/trusty/debian/rules +++ b/trusty/debian/rules @@ -7,7 +7,7 @@ include /usr/share/openstack-pkg-tools/pkgos.make export OSLO_PACKAGE_VERSION=$(VERSION) %: - dh $@ --with python2,systemd + dh $@ --with python2,systemd,sphinxdoc override_dh_clean: dh_clean @@ -24,6 +24,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 @@ -53,3 +54,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