Added a documentation package with the sphinx docs.
[openstack-build/ceilometer-build.git] / trusty / debian / rules
index 7de1744dc1b4e7e565ae2c7a0fe661d4ff2895ac..94822756c5c88f21275f6d00faf2bbde67e3b49e 100755 (executable)
@@ -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
@@ -54,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