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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
#! /usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
include /usr/share/dpkg/architecture.mk
PY3VERS := $(shell py3versions -vs)
CURLVERS := $(strip $(shell /usr/bin/curl-config --version | awk '{print $$2}'))
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DO_PACKAGES = $(shell dh_listpackages)
ifneq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
export _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__$(DEB_HOST_MULTIARCH)
endif
%:
dh $@
override_dh_auto_build:
$(MAKE) gen PYTHON=python3
for py in $(PY3VERS) ; do \
python$$py setup.py build ; \
done
mkdir -p www/htdocs/doc
ifneq (,$(filter python-pycurl-doc,$(DO_PACKAGES)))
$(MAKE) docs PYTHON=python3
endif
override_dh_auto_test:
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
set -e ;\
for py in $(PY3VERS) ; do \
make test PYTHON=python$$py PYTEST="python$$py -m pytest" PYTEST_ADDOPTS="--ignore examples --ignore .pc -m 'not online'" PYFLAKES="python$$py -m pyflakes" PYCURL_VSFTPD_PATH=vsftpd; \
done
endif
override_dh_auto_install:
for py in $(PY3VERS); do \
python$$py setup.py install --root=$(CURDIR)/debian/python3-pycurl --install-layout=deb; \
done
# Remove documentation as installed by setup.py
rm -rf $(CURDIR)/debian/python*-pycurl*/usr/share/doc/pycurl
override_dh_installdocs:
mkdir -p debian/python-pycurl-doc/usr/share/doc/python-pycurl-doc/html
ifneq (,$(filter python-pycurl-doc,$(DO_PACKAGES)))
cp -a build/doc/* $(CURDIR)/debian/python-pycurl-doc/usr/share/doc/python-pycurl-doc/html
endif
dh_installdocs -ppython3-pycurl --link-doc=python3-pycurl
dh_installdocs -Npython3-pycurl
override_dh_installchangelogs:
dh_installchangelogs ChangeLog
override_dh_strip:
ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
dh_strip -ppython3-pycurl --dbgsym-migration='python3-pycurl-dbg (<< 7.44.1-2~)'
endif
override_dh_compress:
dh_compress -X.py
override_dh_shlibdeps:
dh_shlibdeps -a
sed -i '/shlibs:Depends/s,\(libcurl[0-9]*-gnutls (>= \)[^)]*\().*\),\1$(CURLVERS)\2,' debian/python3-pycurl*.substvars
|