[SCM] Debian packaging of libsoap-lite-perl branch, master, updated. debian/0.712-4-5-g37149f9

gregor herrmann gregoa at debian.org
Wed Aug 17 18:27:03 UTC 2011


The following commit has been merged in the master branch:
commit 37149f966655fe19958584da3b75fb40b0773bdc
Author: gregor herrmann <gregoa at debian.org>
Date:   Wed Aug 17 20:26:51 2011 +0200

    Remove 636276-perl5.14.patch, applied upstream.

diff --git a/debian/patches/636276-perl5.14.patch b/debian/patches/636276-perl5.14.patch
deleted file mode 100644
index 596d2ab..0000000
--- a/debian/patches/636276-perl5.14.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-Description: fixes for Perl 5.14
-Bug: https://rt.cpan.org/Public/Bug/Display.html?id=68088
-Bug-Debian: http://bugs.debian.org/636276
-Author: Frank Maas <maas.frank at gmail.com>
-
---- a/lib/XML/Parser/Lite.pm
-+++ b/lib/XML/Parser/Lite.pm
-@@ -167,7 +167,8 @@
- sub _start {
-     die "multiple roots, wrong element '$_[0]'\n" if $level++ && !@stack;
-     push(@stack, $_[0]);
--    Start(__PACKAGE__, @_);
-+    my $r=Start(__PACKAGE__, @_);
-+    ref($r) eq 'ARRAY' ? $r : undef;
- }
- 
- sub _char {
-@@ -181,29 +182,35 @@
-         die "junk '$_[0]' @{[$level ? 'after' : 'before']} XML element\n"
-         if index("\n\r\t ", substr($_[0],$i,1)) < 0; # or should '< $[' be there
-     }
-+    return [];
- }
- 
- sub _end {
-     no warnings qw(uninitialized);
-     pop(@stack) eq $_[0] or die "mismatched tag '$_[0]'\n";
--    End(__PACKAGE__, $_[0]);
-+    my $r = End(__PACKAGE__, $_[0]);
-+    ref($r) eq 'ARRAY' ? $r : undef;
- }
- 
- sub comment {
--    Comment(__PACKAGE__, $_[0]);
-+    my $r = Comment(__PACKAGE__, $_[0]);
-+    ref($r) eq 'ARRAY' ? $r : undef;
- }
- 
- sub end {
-      pop(@stack) eq $_[0] or die "mismatched tag '$_[0]'\n";
--     End(__PACKAGE__, $_[0]);
-+     my $r = End(__PACKAGE__, $_[0]);
-+    ref($r) eq 'ARRAY' ? $r : undef;
-  }
- 
- sub _doctype {
--    Doctype(__PACKAGE__, $_[0]);
-+    my $r = Doctype(__PACKAGE__, $_[0]);
-+    ref($r) eq 'ARRAY' ? $r : undef;
- }
- 
- sub _xmldecl {
--    XMLDecl(__PACKAGE__, $_[0]);
-+    my $r = XMLDecl(__PACKAGE__, $_[0]);
-+    ref($r) eq 'ARRAY' ? $r : undef;
- }
- 
- 
diff --git a/debian/patches/series b/debian/patches/series
index eeac0da..3913372 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,2 @@
-636276-perl5.14.patch
 spelling.patch
 hashref_crash.patch

-- 
Debian packaging of libsoap-lite-perl



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