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 -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# TODO: check FTBFS if hardening is enabled
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
#DPKG_EXPORT_BUILDFLAGS = 1
#include /usr/share/dpkg/buildflags.mk
%:
dh $@ --parallel --with autotools_dev,python2
override_dh_auto_build:
dh_auto_build
PYTHONPATH=.. make --directory doc/ html
override_dh_auto_clean:
dh_auto_clean
rm -f $(CURDIR)/gevent/*.so
cd doc && make clean
rm -f $(CURDIR)/doc/gevent.*.rst $(CURDIR)/doc/changelog.rst
rm -rf $(CURDIR)/gevent.egg-info/
rm -f $(CURDIR)/greentest/testresults.sqlite3
override_dh_compress:
dh_compress -X.js -X_static/* -X _sources/* -X_sources/*/* -X.inv
override_dh_strip:
ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
dh_strip -p python-gevent --dbg-package=python-gevent-dbg
endif
# TODO: check for failures
#override_dh_auto_test:
# cd $(CURDIR)/greentest && PYTHONPATH=.. ./testrunner.py --no-db
override_dh_installdocs:
dh_installdocs --link-doc=python-gevent
.PHONY: override_dh_auto_build override_dh_auto_clean override_dh_compress \
override_dh_strip override_dh_installdocs
|