[Python-modules-commits] r19861 - in packages/pyicu/trunk/debian (2 files)

jwilk at users.alioth.debian.org jwilk at users.alioth.debian.org
Tue Jan 3 13:33:48 UTC 2012


    Date: Tuesday, January 3, 2012 @ 13:33:46
  Author: jwilk
Revision: 19861

Update platform-definitions-fix.dpatch to treat Hurd like other GNU platforms.

Modified:
  packages/pyicu/trunk/debian/changelog
  packages/pyicu/trunk/debian/patches/platform-definitions-fix.dpatch

Modified: packages/pyicu/trunk/debian/changelog
===================================================================
--- packages/pyicu/trunk/debian/changelog	2012-01-03 05:14:05 UTC (rev 19860)
+++ packages/pyicu/trunk/debian/changelog	2012-01-03 13:33:46 UTC (rev 19861)
@@ -1,3 +1,10 @@
+pyicu (1.3-2) UNRELEASED; urgency=low
+
+  * Update platform-definitions-fix.dpatch to treat Hurd like other GNU
+    platforms.
+
+ -- Jakub Wilk <jwilk at debian.org>  Tue, 03 Jan 2012 14:32:22 +0100
+
 pyicu (1.3-1) unstable; urgency=low
 
   * Team upload.

Modified: packages/pyicu/trunk/debian/patches/platform-definitions-fix.dpatch
===================================================================
--- packages/pyicu/trunk/debian/patches/platform-definitions-fix.dpatch	2012-01-03 05:14:05 UTC (rev 19860)
+++ packages/pyicu/trunk/debian/patches/platform-definitions-fix.dpatch	2012-01-03 13:33:46 UTC (rev 19861)
@@ -12,7 +12,7 @@
  
  platform = sys.platform
 -if platform.startswith('linux'):
-+if platform.startswith('linux') or platform.startswith('gnukfreebsd'):
++if platform.startswith('linux') or platform.startswith('gnu'):
      platform = 'linux'
  
  if 'PYICU_INCLUDES' in os.environ:




More information about the Python-modules-commits mailing list