3ytvmENMDznzAXfRiu9Sdl changeset

Changeset653031376561 (b)
ParentNone (a)
ab
0+export DH_COMPAT=4
0+export DH_OPTIONS
0+
0+DEB_PYTHON_SYSTEM := pysupport
0+
0+include /usr/share/cdbs/1/rules/debhelper.mk
0+include /usr/share/cdbs/1/class/python-distutils.mk
0+
0+PYDEF=$(shell pyversions -d)
0+PYVERS=$(shell pyversions -r)
0+
0+DEB_BUILD_ARCH   ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
0+
0+switch-arch:
0+        sed -e 's/Architecture: any/Architecture: ${DEB_BUILD_ARCH}/g' debian/control > control.dummy
0+        mv control.dummy debian/control
0+
0+build: build-stamp
0+build-stamp:
0+        dh_testdir
0+        set -e; \
0+                for python in $(PYVERS); do \
0+                $$python setup.py build; \
0+        done
0+        touch build-stamp
0+
0+clean::
0+        dh_testdir
0+        for python in $(PYVERS); do \
0+                $$python setup.py clean; \
0+        done
0+        rm -rf build-stamp build
0+        dh_clean
0+
0+install: build
0+        dh_testdir
0+        dh_testroot
0+        dh_clean -k
0+        dh_installdirs
0+       
0+        set -e; \
0+        for python in $(PYVERS); do \
0+                $$python setup.py install --root=debian/python-midgard2; \
0+        done
0+       
0+# nothing to do
0+binary-indep: DH_OPTIONS=-i
0+binary-indep:
0+
0+binary-indep: DH_OPTIONS=-a
0+binary-arch: install
0+        dh_testdir
0+        dh_testroot
0+        dh_installdocs 
0+        dh_installchangelogs
0+        dh_strip
0+        dh_compress
0+        dh_fixperms
0+        dh_installdeb
0+        dh_makeshlibs
0+        dh_shlibdeps -L libmidgard9.3
0+        dh_gencontrol
0+        dh_md5sums
0+        dh_builddeb
0+
0+binary: switch-arch binary-indep binary-arch
0+.PHONY: switch-arch binary binary-arch binary-indep clean build
0+
...
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
--- Revision None
+++ Revision 653031376561
@@ -0,0 +1,68 @@
+export DH_COMPAT=4
+export DH_OPTIONS
+
+DEB_PYTHON_SYSTEM := pysupport
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+
+PYDEF=$(shell pyversions -d)
+PYVERS=$(shell pyversions -r)
+
+DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
+
+switch-arch:
+ sed -e 's/Architecture: any/Architecture: ${DEB_BUILD_ARCH}/g' debian/control > control.dummy
+ mv control.dummy debian/control
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ set -e; \
+ for python in $(PYVERS); do \
+ $$python setup.py build; \
+ done
+ touch build-stamp
+
+clean::
+ dh_testdir
+ for python in $(PYVERS); do \
+ $$python setup.py clean; \
+ done
+ rm -rf build-stamp build
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ set -e; \
+ for python in $(PYVERS); do \
+ $$python setup.py install --root=debian/python-midgard2; \
+ done
+
+# nothing to do
+binary-indep: DH_OPTIONS=-i
+binary-indep:
+
+binary-indep: DH_OPTIONS=-a
+binary-arch: install
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installchangelogs
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_makeshlibs
+ dh_shlibdeps -L libmidgard9.3
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: switch-arch binary-indep binary-arch
+.PHONY: switch-arch binary binary-arch binary-indep clean build
+