r64499 - in /trunk/libsoap-lite-perl/debian: changelog control patches/hashref_crash.patch patches/series

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Wed Nov 3 11:43:08 UTC 2010


Author: periapt-guest
Date: Wed Nov  3 11:42:52 2010
New Revision: 64499

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=64499
Log:
* Applying patch to fix hash reference crash (Closes: #602056)
* Upped standards version to 3.9.1
* Added myself to Uploaders

Added:
    trunk/libsoap-lite-perl/debian/patches/hashref_crash.patch
Modified:
    trunk/libsoap-lite-perl/debian/changelog
    trunk/libsoap-lite-perl/debian/control
    trunk/libsoap-lite-perl/debian/patches/series

Modified: trunk/libsoap-lite-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/debian/changelog?rev=64499&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/debian/changelog (original)
+++ trunk/libsoap-lite-perl/debian/changelog Wed Nov  3 11:42:52 2010
@@ -1,6 +1,12 @@
 libsoap-lite-perl (0.712-2) UNRELEASED; urgency=low
 
+  [ gregor herrmann ]
   * Remove Conflicts: libsoap-perl.
+
+  [ Nicholas Bamber ]
+  * Applying patch to fix hash reference crash (Closes: #602056)
+  * Upped standards version to 3.9.1
+  * Added myself to Uploaders
 
  -- gregor herrmann <gregoa at debian.org>  Sat, 31 Jul 2010 15:32:20 -0400
 

Modified: trunk/libsoap-lite-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/debian/control?rev=64499&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/debian/control (original)
+++ trunk/libsoap-lite-perl/debian/control Wed Nov  3 11:42:52 2010
@@ -13,8 +13,8 @@
  Krzysztof Krzyzaniak (eloy) <eloy at debian.org>, Niko Tyni <ntyni at iki.fi>,
  gregor herrmann <gregoa at debian.org>, Jonathan Yu <jawnsy at cpan.org>,
  Martín Ferrari <tincho at debian.org>, Damyan Ivanov <dmn at debian.org>,
- Franck Joncourt <franck at debian.org>
-Standards-Version: 3.8.4
+ Franck Joncourt <franck at debian.org>, Nicholas Bamber <nicholas at periapt.co.uk>
+Standards-Version: 3.9.1
 Homepage: http://sourceforge.net/projects/soaplite/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libsoap-lite-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libsoap-lite-perl/

Added: trunk/libsoap-lite-perl/debian/patches/hashref_crash.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/debian/patches/hashref_crash.patch?rev=64499&op=file
==============================================================================
--- trunk/libsoap-lite-perl/debian/patches/hashref_crash.patch (added)
+++ trunk/libsoap-lite-perl/debian/patches/hashref_crash.patch Wed Nov  3 11:42:52 2010
@@ -1,0 +1,20 @@
+--- a/lib/SOAP/Lite.pm
++++ b/lib/SOAP/Lite.pm
+@@ -3747,13 +3747,13 @@
+                 # fillup parameters
+                 UNIVERSAL::isa($_[$param] => 'SOAP::Data')
+                     ? $_[$param]->SOAP::Data::value($value)
+-                    : UNIVERSAL::isa($_[$param] => 'ARRAY')
++                    : (ref($_[$param] eq 'ARRAY'))
+                         ? (@{$_[$param]} = @$value)
+-                        : UNIVERSAL::isa($_[$param] => 'HASH')
++                        : (ref($_[$param]) eq 'HASH')
+                             ? (%{$_[$param]} = %$value)
+-                            : UNIVERSAL::isa($_[$param] => 'SCALAR')
++                            : (ref($_[$param]) eq 'SCALAR')
+                                 ? (${$_[$param]} = $$value)
+-                                : ($_[$param] = $value)
++                                : ($_[$param] = $value);
+             }
+         }
+     }

Modified: trunk/libsoap-lite-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/debian/patches/series?rev=64499&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/debian/patches/series (original)
+++ trunk/libsoap-lite-perl/debian/patches/series Wed Nov  3 11:42:52 2010
@@ -1,1 +1,2 @@
 spelling.patch
+hashref_crash.patch




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