1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
#export DEB_BUILD_OPTIONS=nocheck
export PYBUILD_NAME=manuel
export PYBUILD_TEST_CUSTOM=1
export PYBUILD_TEST_ARGS={interpreter} -m unittest -v manuel.tests.test_suite
%:
dh $@ --with sphinxdoc --buildsystem=pybuild
override_dh_auto_install:
dh_auto_install
rm -f debian/python*-manuel/usr/lib/python*/dist-packages/manuel/*.txt
rm -f debian/python*-manuel/usr/lib/python*/dist-packages/manuel/tests.py
ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS)))
PYTHONPATH=. http_proxy='127.0.0.1:9' \
python3 -m sphinx -N -bhtml -c sphinx src/manuel debian/python3-manuel/usr/share/doc/python3-manuel/html
endif
override_dh_installchangelogs:
dh_installchangelogs CHANGES.rst
|