[Pkg-jed-commit] r992 - in slgtk/trunk/debian: . patches

Rafael Laboissiere rafael at alioth.debian.org
Fri Dec 14 23:00:19 UTC 2007


Author: rafael
Date: 2007-12-14 23:00:19 +0000 (Fri, 14 Dec 2007)
New Revision: 992

Added:
   slgtk/trunk/debian/patches/slang-function-deref.patch
Modified:
   slgtk/trunk/debian/changelog
Log:
Added patch to cope with a recent slang2.1 release that apparently
fixed some function dereferencing bugs.  This was making the package
FTBFS.

Modified: slgtk/trunk/debian/changelog
===================================================================
--- slgtk/trunk/debian/changelog	2007-12-14 22:44:46 UTC (rev 991)
+++ slgtk/trunk/debian/changelog	2007-12-14 23:00:19 UTC (rev 992)
@@ -1,12 +1,17 @@
 slgtk (0.7.2-2) UNRELEASED; urgency=low
 
+  * debian/patches/slang-function-deref.patch: Added patch to cope with
+    a recent slang2.1 release that apparently fixed some function
+    dereferencing bugs.  This was making the package FTBFS.  Patch
+    suggested by the upstream author (thanks, Michael Noble).  Closes:
+    #453232.
   * debian/control:
     + Added Homepage field
     + Use the now official Vcs-* fields instead of the obsolete XS-Vcs-*
     + Dropped the Homepage pseudo-header from the extended descriptions
     + Bumped Standards-Version to 3.7.3
 
- -- Rafael Laboissiere <rafael at debian.org>  Wed, 05 Dec 2007 12:58:41 +0100
+ -- Rafael Laboissiere <rafael at debian.org>  Fri, 14 Dec 2007 23:59:36 +0100
 
 slgtk (0.7.2-1) unstable; urgency=low
 

Added: slgtk/trunk/debian/patches/slang-function-deref.patch
===================================================================
--- slgtk/trunk/debian/patches/slang-function-deref.patch	                        (rev 0)
+++ slgtk/trunk/debian/patches/slang-function-deref.patch	2007-12-14 23:00:19 UTC (rev 992)
@@ -0,0 +1,11 @@
+--- slgtk-0.7.2.orig/slirp/slirputils.sl.in
++++ slgtk-0.7.2/slirp/slirputils.sl.in
+@@ -918,7 +918,7 @@
+ 
+ define struct_map(type, struct_arr, field) % {{{
+ {
+-   !if (length(struct_arr)) return (@Array_Type)(type, 0);
++   !if (length(struct_arr)) return @Array_Type(type, 0);
+    return array_map(type, &get_struct_field, struct_arr, field);
+ } % }}}
+ 




More information about the Pkg-jed-commit mailing list