blob: 434e58c2cea6e4331b2573fb95eb2dd551eb13a4 (
plain)
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
|
#!/usr/bin/make -f
# HACK: disable checks, i.e. unit tests
DEB_BUILD_OPTIONS += nocheck
export WITHOUT_NOSETESTS := 1
EXAMPLE_SCRIPTS=\
gbp-add-patch \
gbp-cowbuilder-sid \
gbp-posttag-push \
gbp-configure-unpatched-source \
wrap_cl.py
DEB_COMPRESS_EXCLUDE=$(EXAMPLE_SCRIPTS)
ZSH_COMPDIR = /usr/share/zsh/vendor-completions/
PYCHECKER_ARGS=-boptparse --no-override --no-shadowbuiltin
%:
dh $@ --with python2
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_test
export GIT_AUTHOR_NAME="Gbp Tests"; \
export GIT_AUTHOR_EMAIL=tests@example.com; \
export GIT_COMMITTER_NAME=$$GIT_AUTHOR_NAME; \
export GIT_COMMITTER_EMAIL=$$GIT_AUTHOR_EMAIL; \
PYTHONPATH=. \
python setup.py nosetests
else
@echo "Checks disabled via DEB_BUILD_OPTIONS"
endif
override_dh_auto_build:
dh_auto_build
make -C docs
#generate apidocs
sh gen_apidocs.sh
override_dh_auto_install:
dh_auto_install
dh_bash-completion
mkdir -p debian/git-buildpackage/$(ZSH_COMPDIR)
install -m644 debian/git-buildpackage.zsh-completion \
debian/git-buildpackage/$(ZSH_COMPDIR)/_gbp
override_dh_auto_clean:
dh_auto_clean
# Remove renamed files - renames are not correctly expressed in debian.diff
rm -f debian/doc-base
rm -f debian/docs
rm -f debian/examples
rm -f debian/manpages
rm -rf build/
make -C docs/ clean
-rm gbp/version.py
override_dh_compress:
dh_compress --exclude=usr/share/doc/git-buildpackage/examples/
|