Codebase list doublex / 51bba92
d/rules: Drop get-orig-source target. Ondřej Nový 4 years ago
2 changed file(s) with 1 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
1111 * d/watch: Fix.
1212 * Enable autopkgtest-pkg-python testsuite.
1313 * Bump debhelper compat level to 12 and use debhelper-compat.
14 * d/rules: Drop get-orig-source target.
1415
1516 [ Piotr Ożarowski ]
1617 * Add dh-python to Build-Depends
00 #!/usr/bin/make -f
1
2 APP=doublex
3 VERSION=$(shell head -n 1 debian/changelog | cut -f2 -d " " | tr -d "()" | cut -f1 -d "-")
4
5 ORIG_REPO=hg clone http://bitbucket.org/DavidVilla/python-doublex -r v$(VERSION)
6 ORIG_DIR=$(APP)-$(VERSION)
7 EXCLUDE=--exclude=debian --exclude=\*~ --exclude=.hg --exclude=.svn --exclude=\*.pyc
81
92 export PYBUILD_NAME=doublex
103
114 %:
125 dh $@ --with python3 --buildsystem=pybuild
13
14 get-orig-source:
15 $(ORIG_REPO) $(ORIG_DIR)
16 tar $(EXCLUDE) -czf $(APP)_$(VERSION).orig.tar.gz $(ORIG_DIR)
17 $(RM) -r $(ORIG_DIR)