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
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
PYVERS = $(shell pyversions -r -v)
# If DEB_BUILD_OPTIONS contains parallel=N, use N number of cores for the
# unit tests as well. Whatever N is, pyrit won't use more than the number
# of cores available. If unset, default to 1
NUMCORES = $(or $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))),1)
%:
dh $@
override_dh_auto_configure:
dh_auto_configure
sed -e 's,<CORES>,$(NUMCORES),' debian/config.build.in > debian/config.build
override_dh_auto_test:
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
set -e ;\
for py in $(PYVERS); do \
LIB=$$(ls -d $(CURDIR)/build/lib.*-$$py) ;\
cd test ;\
PYRIT_CONFIG_FILE=../debian/config.build PYTHONPATH=$$LIB \
python$$py test_pyrit.py ;\
cd .. ;\
done
endif
override_dh_auto_clean:
dh_auto_clean
rm -f debian/config.build
|