1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#!/usr/bin/make -f
export PYBUILD_NAME=pip
#export PYBUILD_VERBOSE=1
#export DH_VERBOSE=1
%:
dh $@ --with python3 --buildsystem=pybuild
# Upstream does not bundle enough of the source tree in the tarball to run the
# test suite. https://github.com/pypa/pip/issues/3370
override_dh_auto_test:
override_dh_python3:
dh_python3 -v
rm -f debian/python3-pip/usr/bin/pip3.?
rm -rf debian/python3-pip/usr/lib/python3.?
override_dh_installchangelogs:
dh_installchangelogs NEWS.rst
execute_after_dh_auto_build:
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
PYTHONPATH=src:docs \
sphinx-build -c docs/html \
-d docs/build/doctrees/man \
-b man \
docs/man \
docs/build/man
PYTHONPATH=src:docs \
sphinx-build -c docs/html \
-d docs/build/doctrees/html \
-b html \
docs/html \
docs/build/html
endif
|