File: rules

package info (click to toggle)
python-gnupg 0.3.9-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 392 kB
  • ctags: 525
  • sloc: python: 4,933; makefile: 21; sh: 6
file content (26 lines) | stat: -rwxr-xr-x 773 bytes parent folder | download
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
#!/usr/bin/make -f

export http_proxy = http://127.0.1.1:9/
export https_proxy = ${http_proxy}
export PYBUILD_NAME=gnupg

%:
	dh $@ --with python2,python3 --buildsystem=pybuild

override_dh_auto_test:
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
	chmod 755 $(CURDIR)/debian/bin/gpg1
	set -ex; for py in $(shell pyversions -r -v); do \
		PATH=$(CURDIR)/debian/bin:$$PATH PYTHONPATH=$(CURDIR)/build/lib.*-$$py python$$py test_gnupg.py ;\
	done
	set -ex; for python in $(shell py3versions -r); do \
		cp test_gnupg.py test_gnupg_3.py ;\
		2to3 -w test_gnupg_3.py ;\
		PATH=$(CURDIR)/debian/bin:$$PATH PYTHONPATH=$(CURDIR)/build/lib $$python test_gnupg_3.py ;\
		rm test_gnupg_3.py ;\
	done
endif

override_dh_auto_clean:
	dh_auto_clean
	rm -rf build/ keys/ __pycache__/