[Python-modules-commits] r13270 - in packages/pyfltk/trunk/debian (2 files)

dktrkranz at users.alioth.debian.org dktrkranz at users.alioth.debian.org
Sun Jun 6 09:06:11 UTC 2010


    Date: Sunday, June 6, 2010 @ 09:05:57
  Author: dktrkranz
Revision: 13270

Allow support for GNU/Hurd too

Modified:
  packages/pyfltk/trunk/debian/changelog
  packages/pyfltk/trunk/debian/patches/platform_startswith

Modified: packages/pyfltk/trunk/debian/changelog
===================================================================
--- packages/pyfltk/trunk/debian/changelog	2010-06-06 06:01:49 UTC (rev 13269)
+++ packages/pyfltk/trunk/debian/changelog	2010-06-06 09:05:57 UTC (rev 13270)
@@ -1,3 +1,10 @@
+pyfltk (1.1.5-2) UNRELEASED; urgency=low
+
+  * debian/patches/platform_startswith:
+    - Allow support for GNU/Hurd too.
+
+ -- Luca Falavigna <dktrkranz at debian.org>  Sun, 06 Jun 2010 11:04:38 +0200
+
 pyfltk (1.1.5-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/pyfltk/trunk/debian/patches/platform_startswith
===================================================================
--- packages/pyfltk/trunk/debian/patches/platform_startswith	2010-06-06 06:01:49 UTC (rev 13269)
+++ packages/pyfltk/trunk/debian/patches/platform_startswith	2010-06-06 09:05:57 UTC (rev 13270)
@@ -10,8 +10,8 @@
      #link_arg_list=["-Wl,--enable-runtime-pseudo-reloc", "-Wl,--enable-auto-import"]
 -elif sys.platform == 'linux2':
 -    print "Building for Linux"
-+elif sys.platform.startswith('linux2') or sys.platform.startswith('gnukfreebsd'):
-+    print "Building for Linux (or GNU/kFreeBSD)"
++elif sys.platform.startswith('linux2') or sys.platform.startswith('gnukfreebsd') or sys.platform.startswith('gnu0'):
++    print "Building for Linux, or GNU/kFreeBSD, or GNU/Hurd"
      # ugly hack to force distutils to use g++ instead of gcc for linking
      from distutils import sysconfig
      # changes the linker from gcc to g++




More information about the Python-modules-commits mailing list