blob: 4008d73fe95edfae42e4abe811f89f5277066db9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/make -f
INIT_SYSTEM ?= upstart,systemd
export PYBUILD_INSTALL_ARGS=--init-system=$(INIT_SYSTEM)
%:
dh $@ --with python3,systemd --buildsystem pybuild
override_dh_auto_test:
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
http_proxy= make PYVER=3 check
else
@echo check disabled by DEB_BUILD_OPTIONS=$(DEB_BUILD_OPTIONS)
endif
override_dh_systemd_start:
dh_systemd_start --no-restart-on-upgrade --no-start
|