* New upstream release (Icehouse beta 1).
* Added new (build)-depends python-heatclient (>= 0.2.3).
+ * Now building the sphinx doc in a heat-doc package.
-- Thomas Goirand <zigo@debian.org> Mon, 09 Dec 2013 22:01:07 +0800
CloudFormation-compatible Query API.
.
This package contains the CloudWatch API.
+
+Package: heat-doc
+Architecture: all
+Section: doc
+Pre-Depends: dpkg (>= 1.15.6~)
+Depends: ${misc:Depends}, ${sphinxdoc:Depends}
+Description: OpenStack orchestration service - Documentation
+ Heat is a service to orchestrate multiple composite cloud applications using
+ templates, through both an OpenStack-native ReST API and a
+ CloudFormation-compatible Query API.
+ .
+ This package contains the documentation.
--- /dev/null
+Document: heat-doc
+Title: Heat Documentation
+Author: OpenStack
+Abstract: Sphinx documentation for Heat
+Section: Network/File Transfer
+
+Format: HTML
+Index: /usr/share/doc/heat-doc/html/index.html
+Files: /usr/share/doc/heat-doc/html/*
export OSLO_PACKAGE_VERSION=$(VERSION)
%:
- dh $@ --with python2
+ dh $@ --buildsystem=python_distutils --with python2,sphinxdoc
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
override_dh_auto_test:
/usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func heat-common.config
override_dh_installman:
- python setup.py build
- make -C doc man
+ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS)))
+ sphinx-build -b man doc/source doc/build/man
dh_installman
+endif
+
+override_dh_sphinxdoc:
+ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS)))
+ sphinx-build -b html doc/source $(CURDIR)/debian/heat-doc/usr/share/doc/heat-doc/html
+ dh_sphinxdoc -O--buildsystem=python_distutils
+endif