[Python-modules-commits] r3664 - in /packages/pyicu/trunk/debian: control patches/setup.py.dpatch pyversions rules

bzed-guest at users.alioth.debian.org bzed-guest at users.alioth.debian.org
Sat Nov 17 22:22:36 UTC 2007


Author: bzed-guest
Date: Sat Nov 17 22:22:36 2007
New Revision: 3664

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=3664
Log:
build/missing dep fixes

Modified:
    packages/pyicu/trunk/debian/control
    packages/pyicu/trunk/debian/patches/setup.py.dpatch
    packages/pyicu/trunk/debian/pyversions
    packages/pyicu/trunk/debian/rules

Modified: packages/pyicu/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/control?rev=3664&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/control (original)
+++ packages/pyicu/trunk/debian/control Sat Nov 17 22:22:36 2007
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Bernd Zeimetz <bernd at bzed.de>
-Build-Depends: dpatch, debhelper (>= 5), python-all-dev, python-support (>= 0.4), libicu36-dev
+Build-Depends: dpatch, debhelper (>= 5), python-all-dev, python-all-dbg, python-support (>= 0.4), libicu36-dev
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyicu/trunk/
 Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/
 Homepage: http://pyicu.osafoundation.org/

Modified: packages/pyicu/trunk/debian/patches/setup.py.dpatch
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/patches/setup.py.dpatch?rev=3664&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/patches/setup.py.dpatch (original)
+++ packages/pyicu/trunk/debian/patches/setup.py.dpatch Sat Nov 17 22:22:36 2007
@@ -7,8 +7,8 @@
 @DPATCH@
 diff -urNad pyicu~/setup.py pyicu/setup.py
 --- pyicu~/setup.py	1970-01-01 01:00:00.000000000 +0100
-+++ pyicu/setup.py	2007-11-17 18:38:32.000000000 +0100
-@@ -0,0 +1,40 @@
++++ pyicu/setup.py	2007-11-17 18:51:23.000000000 +0100
+@@ -0,0 +1,39 @@
 +import os
 +import re
 +
@@ -17,11 +17,10 @@
 +    os.environ['CC']='g++'
 +
 +
-+__cpp_files__ = ['bases.cpp', 'calendar.cpp', 'charset.cpp',
-+                 'collator.cpp', 'common.cpp', 'dateformat.cpp',
-+                 'errors.cpp', 'format.cpp', 'iterators.cpp',
-+                 'locale.cpp', 'numberformat.cpp', '_PyICU.cpp']
-+
++__cpp_files__ = []
++for filename in os.listdir(os.curdir):
++    if filename.endswith('.cpp'):
++        __cpp_files__.append(filename)
 +
 +## this is a debian-only way to figure out which pyicu version we're
 +## using here.... normally upstream's job to keep the version uptodate

Modified: packages/pyicu/trunk/debian/pyversions
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/pyversions?rev=3664&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/pyversions (original)
+++ packages/pyicu/trunk/debian/pyversions Sat Nov 17 22:22:36 2007
@@ -1,1 +1,1 @@
-2.3-
+2.4-

Modified: packages/pyicu/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/rules?rev=3664&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/rules (original)
+++ packages/pyicu/trunk/debian/rules Sat Nov 17 22:22:36 2007
@@ -23,9 +23,9 @@
 	set -e ;\
 	for test in `ls test/*.py`; do \
 	  for py in $(PYVERS); do  \
-	    PYTHONPATH=$(CURDIR)/build/lib.$(DEB_BUILD_ARCH_OS)-$(DEB_BUILD_GNU_CPU)-$$py \
+	    PYTHONPATH=$(CURDIR)/build/lib.$(DEB_BUILD_ARCH_OS)-$(shell uname -m)-$$py \
 	      python$$py $$test ;\
-	    PYTHONPATH=$(CURDIR)/build/lib_d.$(DEB_BUILD_ARCH_OS)-$(DEB_BUILD_GNU_CPU)-$$py \
+	    PYTHONPATH=$(CURDIR)/build/lib_d.$(DEB_BUILD_ARCH_OS)-$(shell uname -m)-$$py \
 	      python$$py-dbg $$test ;\
 	  done ;\
 	done




More information about the Python-modules-commits mailing list