[Python-modules-commits] r3520 - in /packages/pyicu/trunk/debian: changelog dirs docs rules
bzed-guest at users.alioth.debian.org
bzed-guest at users.alioth.debian.org
Sat Nov 3 07:26:05 UTC 2007
Author: bzed-guest
Date: Sat Nov 3 07:26:04 2007
New Revision: 3520
URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=3520
Log:
more changes, still not finished yet.
Removed:
packages/pyicu/trunk/debian/dirs
Modified:
packages/pyicu/trunk/debian/changelog
packages/pyicu/trunk/debian/docs
packages/pyicu/trunk/debian/rules
Modified: packages/pyicu/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/changelog?rev=3520&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/changelog (original)
+++ packages/pyicu/trunk/debian/changelog Sat Nov 3 07:26:04 2007
@@ -1,6 +1,6 @@
pyicu (0.6-1) unstable; urgency=low
- * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
+ * Initial release (Closes: #449035)
-- Bernd Zeimetz <bernd at bzed.de> Fri, 02 Nov 2007 15:40:58 +0100
Modified: packages/pyicu/trunk/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/docs?rev=3520&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/docs (original)
+++ packages/pyicu/trunk/debian/docs Sat Nov 3 07:26:04 2007
@@ -1,1 +1,2 @@
README
+CREDITS
Modified: packages/pyicu/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/rules?rev=3520&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/rules (original)
+++ packages/pyicu/trunk/debian/rules Sat Nov 3 07:26:04 2007
@@ -13,14 +13,19 @@
grep '^Version' | \
sed 's,Version: ,,;s,-.*,,g')
-
#include /usr/share/dpatch/dpatch.make
#build: patch build-stamp
build: build-stamp
build-stamp:
dh_testdir
-
+ set -e ;\
+ for pyver in $(PYVERS); do \
+ make PREFIX=/usr PREFIX_PYTHON=/usr PREFIX_ICU=/usr/lib \
+ PYTHON=/usr/bin/python$$pyver PYTHON_VER=$$pyver ;\
+ make install PREFIX_PYTHON=$(CURDIR)/debian/usr/$(PKGNAME) ;\
+ make clean ;\
+ done
touch $@
#clean: clean-patched unpatch
@@ -30,7 +35,6 @@
dh_testroot
rm -f build-stamp
- make clean
dh_clean
@@ -40,16 +44,21 @@
binary-arch: build
dh_testdir
dh_testroot
- dh_installchangelogs
- dh_compress -X.py
+ dh_installchangelogs CHANGES
+ dh_compress
dh_fixperms
+ dh_strip
dh_pysupport
dh_installdeb
+ # Ignore libpython dependencies
+ ( for i in $(PYVERS); do echo libpython$$i 1.0; done ) > debian/shlibs.local
+ dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary \
- clean-patched patch unpatch
+.PHONY: build clean binary-indep binary-arch binary
+#\
+# clean-patched patch unpatch
More information about the Python-modules-commits
mailing list