File: rules

package info (click to toggle)
python-icalendar 6.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,228 kB
  • sloc: python: 5,331; makefile: 169; sh: 59
file content (47 lines) | stat: -rwxr-xr-x 1,284 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/make -f

include /usr/share/dpkg/default.mk
export DEB_VERSION_UPSTREAM  # used by patched docs/conf.py

# generate core documentation unless nodoc requested
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
DOCS = README.html README.txt
CHANGELOGS = CHANGES.html CHANGES.txt
MANPAGES = icalendar.1
endif

export PYBUILD_NAME=icalendar

# avoid failing doctest test
export PYBUILD_TEST_ARGS = \
 --ignore=icalendar/tests/test_with_doctest.py

_ENV = \
 PYTHONPATH="$(CURDIR)/debian/python3-icalendar/usr/lib/$(shell py3versions -d)/dist-packages"

%:
	dh $@ --buildsystem=pybuild

%.html: %.rst
	pandoc --from rst --to html --standalone --output $@ $<

%.txt: %.rst
	pandoc --from rst --to plain --output $@ $<

execute_after_dh_auto_build: $(DOCS) $(CHANGELOGS)
	$(MAKE) -C docs html PYTHONPATH=$(CURDIR)/src

execute_after_dh_auto_install: $(MANPAGES)

execute_after_dh_auto_clean:
	$(MAKE) -C docs clean PYTHONPATH=$(CURDIR)/src
	rm -fr src/icalendar.egg-info

override_dh_installdocs:
	dh_installdocs --all -- $(DOCS)

icalendar.1: debian/python3-icalendar/usr/bin/icalendar
	$(_ENV) help2man --name "command-line tool to preview calendar events" \
	 --no-info --output $@ $< \
	 || { $(_ENV) $< --help; false; }
	find debian/python3-icalendar/usr/lib -name '*.pyc' -delete