1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/make -f
export PYBUILD_NAME=incremental
# XXX Unit tests seem to leave cruft around, for some reason
export PYBUILD_AFTER_TEST=rm -rf {build_dir}/incremental.tests.*
# XXX Needed by Python click, since builders don't have utf-8
# set by default. See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=842748
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
# See discussion in https://bugs.debian.org/965041.
export CRYPTOGRAPHY_OPENSSL_NO_LEGACY=1
%:
dh $@ --buildsystem=pybuild
|