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 37 38 39 40 41 42 43
|
#!/usr/bin/make -f
# -*- makefile -*-
#export DH_VERBOSE = 1
SPHINXOPTS := -E -N
export PYBUILD_NAME=werkzeug
export PYBUILD_TEST_PYTEST=1
export PYBUILD_BEFORE_INSTALL=rm -rf {build_dir}/werkzeug/debug/shared/ICON_LICENSE.md
export PYBUILD_TEST_ARGS=--ignore tests/middleware/test_http_proxy.py --ignore tests/test_serving.py \
'-k not test_basic \
and not test_server \
'
%:
dh $@ --buildsystem=pybuild
override_dh_auto_clean:
make -C docs clean
rm -rf build Werkzeug.egg-info/
#find $(CURDIR) \( -name '\._*' -o -name '\.DS_Store' \) -delete
find . -iname '__pycache__' -exec rm -rf {} \; || true
rm -rf .pytest_cache .mypy_cache debian/doctrees
dh_auto_clean
override_dh_fixperms:
find debian/ -name '*\.png' -exec chmod -x '{}' \;
dh_fixperms
override_dh_installdocs:
dh_installdocs --doc-main-package=python-werkzeug-doc -ppython-werkzeug-doc
dh_installdocs
override_dh_installexamples:
dh_installexamples --doc-main-package=python-werkzeug-doc -ppython-werkzeug-doc
override_dh_sphinxdoc:
ifeq (,$(findstring nodoc, $(DEB_BUILD_OPTIONS)))
PYTHONPATH=`dirname $$(find .pybuild/ -type d -name "werkzeug*dist-info" | head -n1)` \
python3 -m sphinx -b html docs/ -d debian/doctrees $(SPHINXOPTS) debian/python-werkzeug-doc/usr/share/doc/python-werkzeug-doc/html/
dh_sphinxdoc
endif
|