Codebase list python-json-pointer / f4398b9
Added -doc package with sphinx documentation Ondřej Nový 8 years ago
5 changed file(s) with 32 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
66 * d/copyright
77 - Fixed order
88 - Added myself to Debian part
9 * Added -doc package with sphinx documentation
910
1011 -- Ondřej Nový <novy@ondrej.org> Sun, 28 Feb 2016 15:40:14 +0100
1112
99 python-setuptools,
1010 python3-all,
1111 python3-setuptools,
12 python-sphinx,
1213 Standards-Version: 3.9.8
1314 Vcs-Browser: https://anonscm.debian.org/cgit/openstack/python-json-pointer.git/
1415 Vcs-Git: https://anonscm.debian.org/git/openstack/python-json-pointer.git
3738 document.
3839 .
3940 This package provides the module for Python 3.x.
41
42 Package: python-json-pointer-doc
43 Section: doc
44 Architecture: all
45 Depends: ${misc:Depends},
46 ${sphinxdoc:Depends},
47 Description: resolve JSON pointers - doc
48 Python-json-pointer is a small library to resolve JSON pointers according to
49 the IETF draft specification. JSON Pointer defines a string syntax for
50 identifying a specific value within a JavaScript Object Notation (JSON)
51 document.
52 .
53 This package contains the documentation.
0 Document: python-json-pointer-doc
1 Title: Python JSON pointer Documentation
2 Author: Stefan Kögl <stefan@skoegl.net>
3 Abstract: Sphinx documentation for Python JSON pointer
4 Section: Programming/Python
5
6 Format: HTML
7 Index: /usr/share/doc/python-json-pointer-doc/html/index.html
8 Files: /usr/share/doc/python-json-pointer-doc/html/*
77 include /usr/share/openstack-pkg-tools/pkgos.make
88
99 %:
10 dh $@ --buildsystem=python_distutils --with python2,python3
10 dh $@ --buildsystem=python_distutils --with python2,python3,sphinxdoc
1111
1212 override_dh_auto_test:
1313 set -e ; for pyvers in $(PYTHONS) $(PYTHON3S); do \
3333 override_dh_auto_clean:
3434 dh_auto_clean
3535 rm -rf build .egg-info
36
37 ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS)))
38 override_dh_sphinxdoc:
39 sphinx-build -b html doc $(CURDIR)/debian/python-json-pointer-doc/usr/share/doc/python-json-pointer-doc/html
40 dh_sphinxdoc -O--buildsystem=python_distutils
41 endif