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
|
#!/usr/bin/make -f
# -*- makefile -*-
#export DH_VERBOSE = 1
SPHINXOPTS := -E -N
export PYBUILD_NAME=flask_marshmallow
export PYBUILD_SYSTEM=pyproject
%:
dh $@ --buildsystem=pybuild
override_dh_clean:
rm -rf .mypy_cache .pytest_cache
dh_clean
override_dh_sphinxdoc:
ifeq (,$(findstring nodoc, $(DEB_BUILD_OPTIONS)))
PYTHONPATH=`dirname $$(find .pybuild/ -type d -name "flask_marshmallow*dist-info" | head -n1)` \
python3 -m sphinx -b html $(SPHINXOPTS) docs $(CURDIR)/debian/python-flask-marshmallow-doc/usr/share/doc/python-flask-marshmallow-doc/html
dh_sphinxdoc
endif
override_dh_compress:
dh_compress -X changelog.html
override_dh_fixperms:
dh_fixperms
# Fixing file permissions for Python files.
for file in `find $(CURDIR)/debian/python3-flask-marshmallow -type f`; do \
FOUND_PYTHON=$$(head -n1 $$file | grep python); \
if [ "$$FOUND_PYTHON" != "" ]; then \
chmod +x $$file; \
else \
chmod -x $$file; \
fi; \
done
|