File: rules

package info (click to toggle)
pcs 0.12.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,580 kB
  • sloc: python: 228,655; xml: 20,710; ruby: 13,336; makefile: 1,554; sh: 485
file content (76 lines) | stat: -rwxr-xr-x 2,332 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/make -f

# output every command that modifies files on the build system.
#DH_VERBOSE = 1

export systemdsystemunitdir = $(shell pkg-config --variable=systemdsystemunitdir systemd | sed s,^/,,)

# main packaging script based on dh7 syntax
%:
	dh $@ --with python3

override_dh_missing:
	dh_missing --fail-missing

override_dh_clean:
	dh_clean --exclude="corosync.conf.orig"
	rm -rf build pcs/usage.pyc pcs/bash_completion.d.pcs pcs.egg-info setup.cfg .version

override_dh_auto_configure:
	dh_auto_configure -- \
		--enable-use-local-cache-only \
		--enable-webui \
		RM=/bin/rm \
		SYSTEMCTL=/bin/systemctl

override_dh_auto_build:
	echo "Bundler decoupled from build system"

override_dh_auto_install:
	mkdir -p $(CURDIR)/debian/tmp
	mkdir -p $(CURDIR)/debian/tmp/usr/local/sbin

	# Make pcs
	$(MAKE) install \
		DESTDIR=$(CURDIR)/debian/tmp \
		PYTHON_SITELIB=/usr/lib/python3/dist-packages \
		BUILD_GEMS=false \
		BUNDLE_INSTALL_PYAGENTX=false \
		SYSTEMD_DIR=/lib/systemd \
		SYSTEMCTL_OVERRIDE=true \
		install_settings=true

	# pip always installs in /usr/local
	mkdir -p $(CURDIR)/debian/tmp/usr/sbin
	mv $(CURDIR)/debian/tmp/usr/local/sbin/* \
	   $(CURDIR)/debian/tmp/usr/sbin
	mkdir -p $(CURDIR)/debian/tmp/usr/lib/python3/dist-packages
	mv $(CURDIR)/debian/tmp/usr/local/lib/python3*/dist-packages/* \
	   $(CURDIR)/debian/tmp/usr/lib/python3/dist-packages
	rm -fv $(CURDIR)/debian/tmp/usr/lib/python3/dist-packages/*.dist-info/COPYING \
	       $(CURDIR)/debian/tmp/usr/lib/python3/dist-packages/*.dist-info/licenses/COPYING
	rm $(CURDIR)/debian/tmp/usr/lib/python3/dist-packages/*.dist-info/direct_url.json

override_dh_install:
	dh_install -p pcs -X /usr/lib/python3/dist-packages/pcs/snmp
	dh_install -p pcs-snmp

override_dh_python3:
	dh_python3 --skip-private
	dh_python3 /usr/share/pcsd

override_dh_installinit:
	dh_installinit -p pcs --name=pcsd-ruby
	dh_installinit -p pcs --name=pcsd
	dh_installinit -p pcs-snmp --name=pcs_snmp_agent

override_dh_compress:
	# make non-scripts non-executable
	chmod -x $(CURDIR)/debian/pcs/etc/pam.d/pcsd
	chmod -x $(CURDIR)/debian/pcs/usr/lib/python*/*-packages/pcs/settings.py
	chmod -x $(CURDIR)/debian/pcs/usr/share/bash-completion/completions/pcs
	dh_compress

# unit tests fail reprotest under some locales
override_dh_auto_test:
	LC_ALL=C.UTF-8 dh_auto_test