File: rules

package info (click to toggle)
python-mbed-host-tests 1.4.4-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 732 kB
  • sloc: python: 3,141; makefile: 27; sh: 14
file content (41 lines) | stat: -rwxr-xr-x 1,097 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
#!/usr/bin/make -f

include /usr/share/dpkg/pkg-info.mk

export DH_VERBOSE = 1
export PYBUILD_VERBOSE=1

export LANG=C.UTF-8
export LC_ALL=C.UTF-8

export PYBUILD_NAME=mbed-host-tests

%:
	dh $@ --buildsystem=pybuild

execute_after_dh_auto_clean:
	rm -rf html/

execute_after_dh_auto_build:
	# build custom manpages
	@echo DEB_VERSION_UPSTREAM $(DEB_VERSION_UPSTREAM)
	# i) mbedhtrun
	sed -e "s/__VERSION__/$(DEB_VERSION_UPSTREAM)/g" < debian/mbedhtrun.1.md.in > debian/mbedhtrun.1.md
	pandoc debian/mbedhtrun.1.md -s -f markdown -t man -o debian/mbedhtrun.1
	# ii) mbedflsh
	sed -e "s/__VERSION__/$(DEB_VERSION_UPSTREAM)/g" < debian/mbedflsh.1.md.in > debian/mbedflsh.1.md
	pandoc debian/mbedflsh.1.md -s -f markdown -t man -o debian/mbedflsh.1
	#  build library documentation
	doxygen doxygen.cfg
	$(RM) html/jquery.js

execute_after_dh_installdocs:
	dh_doxygen

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	python3 setup.py egg_info
	PYBUILD_SYSTEM=custom \
	PYBUILD_TEST_ARGS="{interpreter} -m unittest discover -v -s test -p \"*.py\" -t {dir}" \
	dh_auto_test
endif