File: rules

package info (click to toggle)
stomper 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 252 kB
  • ctags: 296
  • sloc: python: 1,363; makefile: 12
file content (16 lines) | stat: -rwxr-xr-x 329 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

%:
	dh $@ --with python2

override_dh_install:
	dh_install
	rm -f debian/python-stomper/usr/lib/python*/dist-packages/stomper-*.egg-info/SOURCES.txt

override_dh_auto_test:
ifeq "$(filter nocheck,$(DEB_BUILD_OPTIONS))" ""
	set -e; \
	for py in $(shell pyversions -r); do \
		$$py setup.py test; \
	done
endif