File: rules

package info (click to toggle)
python-sphinx-code-include 1.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,272 kB
  • sloc: javascript: 8,765; python: 1,270; makefile: 23
file content (20 lines) | stat: -rwxr-xr-x 645 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f

UPSTREAM_GIT := https://github.com/ColinKennedy/sphinx-code-include
include /usr/share/openstack-pkg-tools/pkgos.make

export PYBUILD_NAME=sphinx-code-include

%:
	dh $@ --buildsystem=pybuild --with python3,sphinxdoc

override_dh_auto_clean:
	rm -rf build .stestr src/*.egg-info .pybuild
	find . -iname '*.pyc' -delete
	for i in $$(find . -type d -iname __pycache__) ; do rm -rf $$i ; done

override_dh_sphinxdoc:
ifeq (,$(findstring nodoc, $(DEB_BUILD_OPTIONS)))
	PYTHONPATH=`pwd`/src python3 -m sphinx -b html docs debian/python-sphinx-code-include-doc/usr/share/doc/python-sphinx-code-include-doc/html
	dh_sphinxdoc
endif