r55990 - in /trunk/libnet-smpp-perl/debian: changelog patches/fix-FTBFS-missing-bracket.patch patches/series

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Mon Apr 12 07:41:00 UTC 2010


Author: carnil-guest
Date: Mon Apr 12 07:39:35 2010
New Revision: 55990

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=55990
Log:
Add fix-FTBFS-missing-bracket.patch to prevent FTBFS due to a missing
bracket in SMPP.pm. 

Added:
    trunk/libnet-smpp-perl/debian/patches/fix-FTBFS-missing-bracket.patch
Modified:
    trunk/libnet-smpp-perl/debian/changelog
    trunk/libnet-smpp-perl/debian/patches/series

Modified: trunk/libnet-smpp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smpp-perl/debian/changelog?rev=55990&op=diff
==============================================================================
--- trunk/libnet-smpp-perl/debian/changelog (original)
+++ trunk/libnet-smpp-perl/debian/changelog Mon Apr 12 07:39:35 2010
@@ -1,10 +1,6 @@
 libnet-smpp-perl (1.13-1) UNRELEASED; urgency=low
 
-  FTBFS:
-  Missing right curly or square bracket at blib/lib/Net/SMPP.pm line 2517, at end of line
-  syntax error at blib/lib/Net/SMPP.pm line 2517, at EOF
-  Compilation failed in require at test.pl line 17.
-
+  [ gregor herrmann ]
   * New upstream release.
   * Refresh patch.
   * debian/copyright: update formatting and years of upstream copyright.
@@ -13,6 +9,10 @@
   * Set Standards-Version to 3.8.4 (no changes).
   * debian/control: lowecase short description, mention module name in long
     description.
+
+  [ Salvatore Bonaccorso ]
+  * Add fix-FTBFS-missing-bracket.patch to prevent FTBFS due to a missing
+    bracket in SMPP.pm. 
 
  -- gregor herrmann <gregoa at debian.org>  Sat, 06 Mar 2010 18:02:05 +0100
 

Added: trunk/libnet-smpp-perl/debian/patches/fix-FTBFS-missing-bracket.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smpp-perl/debian/patches/fix-FTBFS-missing-bracket.patch?rev=55990&op=file
==============================================================================
--- trunk/libnet-smpp-perl/debian/patches/fix-FTBFS-missing-bracket.patch (added)
+++ trunk/libnet-smpp-perl/debian/patches/fix-FTBFS-missing-bracket.patch Mon Apr 12 07:39:35 2010
@@ -1,0 +1,15 @@
+Description: Fix FTBFS due to missing bracket on eval block.
+Origin: vendor
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=45822
+Author: Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
+--- a/SMPP.pm
++++ b/SMPP.pm
+@@ -145,7 +145,7 @@
+     for my $k (keys(%{&status_code}))
+     {
+ 	eval { *{status_code->{$k}->{code}}        = sub { return $k; } };
+-        eval { *{status_code->{$k}->{code}.'_msg'} = sub { return *{status_code->{$k}->{msg}; } };
++ 	eval { *{status_code->{$k}->{code}.'_msg'} = sub { return *{status_code->{$k}->{msg}; } } };
+     }
+ };
+ 

Modified: trunk/libnet-smpp-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smpp-perl/debian/patches/series?rev=55990&op=diff
==============================================================================
--- trunk/libnet-smpp-perl/debian/patches/series (original)
+++ trunk/libnet-smpp-perl/debian/patches/series Mon Apr 12 07:39:35 2010
@@ -1,1 +1,2 @@
 01_wrong-path-for-interpreter.patch
+fix-FTBFS-missing-bracket.patch




More information about the Pkg-perl-cvs-commits mailing list