File: rules

package info (click to toggle)
doit 0.31.1-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,580 kB
  • sloc: python: 10,832; makefile: 168; ansic: 14; sh: 4
file content (40 lines) | stat: -rwxr-xr-x 1,014 bytes parent folder | download | duplicates (2)
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
37
38
39
40
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

include /usr/share/dpkg/pkg-info.mk
export PYBUILD_NAME=$(DEB_SOURCE)

%:
	dh $@ --with bash-completion,sphinxdoc,python3 --buildsystem=pybuild

override_dh_bash-completion:
	dh_bash-completion
	cp zsh_completion_doit debian/python3-doit/usr/share/zsh/vendor-completions/_doit

override_dh_auto_clean:
	dh_auto_clean
	rm -rf doc/_build
	rm -f debian/doit.1
	rm -f tests/data/stop
	rm -f tests/data/dependency*
	rm -f tests/data/target
	rm -f tests/data/w*.txt

override_dh_auto_install:
	dh_auto_install
	# Generate manpages, stripping out the non-reproducible 'lib @ <dir>' line.
	help2man debian/doit.sh | grep -v 'lib @' > debian/doit.1
	# build the html pages for the -doc package
	set -ex; \
		export PYTHONPATH=$(CURDIR); \
		cd doc; \
		make html;

override_dh_auto_test:
	# Disable test on build time. They are executed by autopkgtest

get-orig-source:
	uscan --download-version $(DEB_VERSION_UPSTREAM)