[libsoap-wsdl-perl] 08/09: add patch fixing the base class of SOAP::WSDL::SOAP::HeaderFault

Damyan Ivanov dmn at moszumanska.debian.org
Mon Jun 8 14:45:54 UTC 2015


This is an automated email from the git hooks/post-receive script.

dmn pushed a commit to branch master
in repository libsoap-wsdl-perl.

commit 7a7646df8745f76c8a3f877bf326ec120e1cabe1
Author: Damyan Ivanov <dmn at debian.org>
Date:   Mon Jun 8 14:40:45 2015 +0000

    add patch fixing the base class of SOAP::WSDL::SOAP::HeaderFault
---
 debian/patches/fix-HeaderFault-base.patch | 22 ++++++++++++++++++++++
 debian/patches/series                     |  1 +
 2 files changed, 23 insertions(+)

diff --git a/debian/patches/fix-HeaderFault-base.patch b/debian/patches/fix-HeaderFault-base.patch
new file mode 100644
index 0000000..bc409df
--- /dev/null
+++ b/debian/patches/fix-HeaderFault-base.patch
@@ -0,0 +1,22 @@
+Description: SOAL::WSDL::Header is not valis base class for SOAP::WSDL::SOAP::HeaderFault
+ It seems to be a typo, so change that to SOAP::WSDL::SOAP::Header
+ SOAP::WSDL::SOAP::HeaderFault doesn't seem to be use anywhere, maybe just drop
+ it?
+Author: Damyan Ivanov <dmn at debian.org>
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=105092
+Bug: https://rt.cpan.org/Ticket/Display.html?id=105092
+
+--- a/lib/SOAP/WSDL/SOAP/HeaderFault.pm
++++ b/lib/SOAP/WSDL/SOAP/HeaderFault.pm
+@@ -1,8 +1,8 @@
+ package SOAP::WSDL::SOAP::HeaderFault;
+ use strict;
+ use warnings;
+-use base qw(SOAP::WSDL::Header);
++use base qw(SOAP::WSDL::SOAP::Header);
+ 
+ use version; our $VERSION = qv('2.00.10');
+ 
+-1;
+\ No newline at end of file
++1;
diff --git a/debian/patches/series b/debian/patches/series
index ffcbe1a..6e6204a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -4,3 +4,4 @@ lvalue-modification-5.18.patch
 load-with-Class::Load.patch
 prefix_from_namespace.patch
 use-Test::XML.patch
+fix-HeaderFault-base.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libsoap-wsdl-perl.git



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