r45243 - in /trunk/libsoap-lite-perl: ./ debian/ lib/Apache/ lib/Apache/XMLRPC/ lib/SOAP/ lib/SOAP/Transport/ lib/UDDI/ lib/XML/Parser/ lib/XMLRPC/ lib/XMLRPC/Transport/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Oct 2 17:33:30 UTC 2009


Author: jawnsy-guest
Date: Fri Oct  2 17:32:59 2009
New Revision: 45243

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=45243
Log:
Integrate new upstream release, there don't seem to be any relevant changes, still waiting on updates to the metadata

Modified:
    trunk/libsoap-lite-perl/Changes
    trunk/libsoap-lite-perl/META.yml
    trunk/libsoap-lite-perl/debian/changelog
    trunk/libsoap-lite-perl/lib/Apache/SOAP.pm
    trunk/libsoap-lite-perl/lib/Apache/XMLRPC/Lite.pm
    trunk/libsoap-lite-perl/lib/SOAP/Constants.pm
    trunk/libsoap-lite-perl/lib/SOAP/Lite.pm
    trunk/libsoap-lite-perl/lib/SOAP/Packager.pm
    trunk/libsoap-lite-perl/lib/SOAP/Test.pm
    trunk/libsoap-lite-perl/lib/SOAP/Transport/FTP.pm
    trunk/libsoap-lite-perl/lib/SOAP/Transport/HTTP.pm
    trunk/libsoap-lite-perl/lib/SOAP/Transport/IO.pm
    trunk/libsoap-lite-perl/lib/SOAP/Transport/JABBER.pm
    trunk/libsoap-lite-perl/lib/SOAP/Transport/LOCAL.pm
    trunk/libsoap-lite-perl/lib/SOAP/Transport/MAILTO.pm
    trunk/libsoap-lite-perl/lib/SOAP/Transport/MQ.pm
    trunk/libsoap-lite-perl/lib/SOAP/Transport/POP3.pm
    trunk/libsoap-lite-perl/lib/SOAP/Transport/TCP.pm
    trunk/libsoap-lite-perl/lib/UDDI/Lite.pm
    trunk/libsoap-lite-perl/lib/XML/Parser/Lite.pm
    trunk/libsoap-lite-perl/lib/XMLRPC/Lite.pm
    trunk/libsoap-lite-perl/lib/XMLRPC/Test.pm
    trunk/libsoap-lite-perl/lib/XMLRPC/Transport/HTTP.pm
    trunk/libsoap-lite-perl/lib/XMLRPC/Transport/POP3.pm
    trunk/libsoap-lite-perl/lib/XMLRPC/Transport/TCP.pm

Modified: trunk/libsoap-lite-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/Changes?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/Changes (original)
+++ trunk/libsoap-lite-perl/Changes Fri Oct  2 17:32:59 2009
@@ -1,7 +1,7 @@
 #
 # Revision history for Perl extension SOAP::Lite.
 #
-# $Id: Changes 337 2009-09-29 20:48:08Z kutterma $
+# $Id: Changes 341 2009-09-30 18:34:58Z kutterma $
 
 The contents of this file provides a change history for the SOAP::Lite
 Perl module. New features are designated with a '+' and bug fixes with
@@ -15,6 +15,8 @@
 -----------------------------------------------------------------------
 THIS RELEASE
 -----------------------------------------------------------------------
+0.710.10
+   ! #49981: UDDI::Lite version not parsable by cpanplus (again)
 0.710.09
    ! #46444: use SOAP::Lite::Deserializer::XMLSchemaSOAP1_2 missing
    ! #37151: Strawberry perl 5.10 - Tests fail and then later hang

Modified: trunk/libsoap-lite-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/META.yml?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/META.yml (original)
+++ trunk/libsoap-lite-perl/META.yml Fri Oct  2 17:32:59 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               SOAP-Lite
-version:            0.710.09
+version:            0.710.10
 abstract:           Perl's Web Services Toolkit
 author:
     - Pavel Kulchenko, Randy J Ray, Byrne Reese, Martin Kutter (MKUTTER at cpan.org)

Modified: trunk/libsoap-lite-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/debian/changelog?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/debian/changelog (original)
+++ trunk/libsoap-lite-perl/debian/changelog Fri Oct  2 17:32:59 2009
@@ -1,4 +1,4 @@
-libsoap-lite-perl (0.710.09-1) UNRELEASED; urgency=low
+libsoap-lite-perl (0.710.10-1) UNRELEASED; urgency=low
 
   TODO: fix shebang lines & extensions, per old rules
 
@@ -16,7 +16,7 @@
   [ gregor herrmann ]
   * Change source package name to libsoap-lite-perl.
 
- -- Jonathan Yu <jawnsy at cpan.org>  Wed, 30 Sep 2009 06:56:59 -0400
+ -- Jonathan Yu <jawnsy at cpan.org>  Fri, 02 Oct 2009 09:47:59 -0400
 
 soap-lite (0.710.08-2) unstable; urgency=low
 

Modified: trunk/libsoap-lite-perl/lib/Apache/SOAP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/Apache/SOAP.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/Apache/SOAP.pm (original)
+++ trunk/libsoap-lite-perl/lib/Apache/SOAP.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: SOAP.pm 339 2009-09-29 21:16:47Z kutterma $
+# $Id: SOAP.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -15,7 +15,7 @@
 use SOAP::Transport::HTTP;
 
 @ISA = qw(SOAP::Transport::HTTP::Apache);
-use version; $VERSION = qv('0.710.09');
+use version; $VERSION = qv('0.710.10');
 
 my $server = __PACKAGE__->new;
 

Modified: trunk/libsoap-lite-perl/lib/Apache/XMLRPC/Lite.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/Apache/XMLRPC/Lite.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/Apache/XMLRPC/Lite.pm (original)
+++ trunk/libsoap-lite-perl/lib/Apache/XMLRPC/Lite.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Lite.pm 339 2009-09-29 21:16:47Z kutterma $
+# $Id: Lite.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -16,7 +16,7 @@
 
 @ISA = qw(XMLRPC::Transport::HTTP::Apache);
 
-use version; $VERSION = qv('0.710.09');
+use version; $VERSION = qv('0.710.10');
 
 my $server = __PACKAGE__->new;
 

Modified: trunk/libsoap-lite-perl/lib/SOAP/Constants.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Constants.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Constants.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Constants.pm Fri Oct  2 17:32:59 2009
@@ -5,7 +5,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Constants.pm 339 2009-09-29 21:16:47Z kutterma $
+# $Id: Constants.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 package SOAP::Constants;
@@ -13,7 +13,7 @@
 use SOAP::Lite;
 
 use vars qw($VERSION);
-use version; $VERSION = qv('0.710.09');
+use version; $VERSION = qv('0.710.10');
 
 use constant    URI_1999_SCHEMA_XSD    => "http://www.w3.org/1999/XMLSchema";
 use constant    URI_1999_SCHEMA_XSI    => "http://www.w3.org/1999/XMLSchema-instance";

Modified: trunk/libsoap-lite-perl/lib/SOAP/Lite.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Lite.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Lite.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Lite.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Lite.pm 339 2009-09-29 21:16:47Z kutterma $
+# $Id: Lite.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -19,7 +19,7 @@
 use 5.005;
 use strict;
 use vars qw($VERSION);
-use version; $VERSION = qv('0.710.09');
+use version; $VERSION = qv('0.710.10');
 # ======================================================================
 
 package SOAP::XMLSchemaApacheSOAP::Deserializer;

Modified: trunk/libsoap-lite-perl/lib/SOAP/Packager.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Packager.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Packager.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Packager.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Packager.pm 339 2009-09-29 21:16:47Z kutterma $
+# $Id: Packager.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -14,7 +14,7 @@
 use vars;
 
 use vars qw($VERSION $SUPPORTED_TYPES);
-use version; $VERSION = qv('0.710.09');
+use version; $VERSION = qv('0.710.10');
 $SUPPORTED_TYPES = { };
 
 sub BEGIN {

Modified: trunk/libsoap-lite-perl/lib/SOAP/Test.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Test.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Test.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Test.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Test.pm 339 2009-09-29 21:16:47Z kutterma $
+# $Id: Test.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,7 +12,7 @@
 
 use 5.004;
 use vars qw($VERSION $TIMEOUT);
-use version; $VERSION = qv('0.710.09');
+use version; $VERSION = qv('0.710.10');
 
 $TIMEOUT = 5;
 

Modified: trunk/libsoap-lite-perl/lib/SOAP/Transport/FTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Transport/FTP.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Transport/FTP.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Transport/FTP.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: FTP.pm 314 2009-02-21 18:21:42Z kutterma $
+# $Id: FTP.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,9 +12,7 @@
 
 use strict;
 use vars qw($VERSION);
-use SOAP::Lite;
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $SOAP::Lite::VERSION;
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
 
 use Net::FTP;
 use IO::File;

Modified: trunk/libsoap-lite-perl/lib/SOAP/Transport/HTTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Transport/HTTP.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Transport/HTTP.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Transport/HTTP.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: HTTP.pm 334 2009-09-29 20:34:14Z kutterma $
+# $Id: HTTP.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,9 +12,9 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = $SOAP::Lite::VERSION;
-
-use SOAP::Lite;
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
+
+
 use SOAP::Packager;
 
 # ======================================================================

Modified: trunk/libsoap-lite-perl/lib/SOAP/Transport/IO.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Transport/IO.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Transport/IO.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Transport/IO.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: IO.pm 148 2008-01-06 19:14:09Z kutterma $
+# $Id: IO.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,10 +12,9 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = $SOAP::Lite::VERSION;
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
 
 use IO::File;
-use SOAP::Lite;
 
 # ======================================================================
 

Modified: trunk/libsoap-lite-perl/lib/SOAP/Transport/JABBER.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Transport/JABBER.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Transport/JABBER.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Transport/JABBER.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: JABBER.pm 51 2004-11-14 19:30:50Z byrnereese $
+# $Id: JABBER.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,13 +12,12 @@
 
 use strict;
 use vars qw($VERSION);
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $SOAP::Lite::VERSION;
+
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
 
 use Net::Jabber 1.0021 qw(Client); 
 use URI::Escape; 
 use URI;
-use SOAP::Lite;
 
 my $NAMESPACE = "http://namespaces.soaplite.com/transport/jabber";
 

Modified: trunk/libsoap-lite-perl/lib/SOAP/Transport/LOCAL.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Transport/LOCAL.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Transport/LOCAL.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Transport/LOCAL.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: LOCAL.pm 148 2008-01-06 19:14:09Z kutterma $
+# $Id: LOCAL.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,8 +12,8 @@
 
 use strict;
 use vars qw($VERSION);
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $SOAP::Lite::VERSION;
+
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
 
 # ======================================================================
 

Modified: trunk/libsoap-lite-perl/lib/SOAP/Transport/MAILTO.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Transport/MAILTO.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Transport/MAILTO.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Transport/MAILTO.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: MAILTO.pm 148 2008-01-06 19:14:09Z kutterma $
+# $Id: MAILTO.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,8 +12,8 @@
 
 use strict;
 use vars qw($VERSION);
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $SOAP::Lite::VERSION;
+
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
 
 use MIME::Lite; 
 use URI;

Modified: trunk/libsoap-lite-perl/lib/SOAP/Transport/MQ.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Transport/MQ.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Transport/MQ.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Transport/MQ.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: MQ.pm 153 2008-01-07 22:33:46Z kutterma $
+# $Id: MQ.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,8 +12,7 @@
 
 use strict;
 use vars qw($VERSION);
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $SOAP::Lite::VERSION;
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
 
 use MQClient::MQSeries; 
 use MQSeries::QueueManager;

Modified: trunk/libsoap-lite-perl/lib/SOAP/Transport/POP3.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Transport/POP3.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Transport/POP3.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Transport/POP3.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: POP3.pm 153 2008-01-07 22:33:46Z kutterma $
+# $Id: POP3.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,12 +12,10 @@
 
 use strict;
 use vars qw($VERSION);
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $SOAP::Lite::VERSION;
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
 
 use Net::POP3; 
 use URI; 
-use SOAP::Lite;
 
 # ======================================================================
 

Modified: trunk/libsoap-lite-perl/lib/SOAP/Transport/TCP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/SOAP/Transport/TCP.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/SOAP/Transport/TCP.pm (original)
+++ trunk/libsoap-lite-perl/lib/SOAP/Transport/TCP.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: TCP.pm 51 2004-11-14 19:30:50Z byrnereese $
+# $Id: TCP.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,14 +12,12 @@
 
 use strict;
 use vars qw($VERSION);
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $SOAP::Lite::VERSION;
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
 
 use URI;
 use IO::Socket;
 use IO::Select;
 use IO::SessionData;
-use SOAP::Lite;
 
 # ======================================================================
 

Modified: trunk/libsoap-lite-perl/lib/UDDI/Lite.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/UDDI/Lite.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/UDDI/Lite.pm (original)
+++ trunk/libsoap-lite-perl/lib/UDDI/Lite.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Lite.pm 335 2009-09-29 20:36:37Z kutterma $
+# $Id: Lite.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -13,8 +13,7 @@
 use 5.004;
 use strict;
 use vars qw($VERSION);
-use SOAP::Lite; 
-$VERSION = $SOAP::Lite::VERSION;
+use SOAP::Lite; $VERSION = $SOAP::Lite::VERSION;
 
 # ======================================================================
 

Modified: trunk/libsoap-lite-perl/lib/XML/Parser/Lite.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/XML/Parser/Lite.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/XML/Parser/Lite.pm (original)
+++ trunk/libsoap-lite-perl/lib/XML/Parser/Lite.pm Fri Oct  2 17:32:59 2009
@@ -5,7 +5,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Lite.pm 339 2009-09-29 21:16:47Z kutterma $
+# $Id: Lite.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -13,7 +13,7 @@
 
 use strict;
 use vars qw($VERSION);
-use version; $VERSION = qv('0.710.09');
+use version; $VERSION = qv('0.710.10');
 
 sub new {
     my $class = shift;

Modified: trunk/libsoap-lite-perl/lib/XMLRPC/Lite.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/XMLRPC/Lite.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/XMLRPC/Lite.pm (original)
+++ trunk/libsoap-lite-perl/lib/XMLRPC/Lite.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Lite.pm 313 2008-12-14 19:09:17Z kutterma $
+# $Id: Lite.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -13,7 +13,7 @@
 use SOAP::Lite;
 use strict;
 use vars qw($VERSION);
-use version; $VERSION = qv('0.710.06');
+use version; $VERSION = qv('0.710.10');
 
 # ======================================================================
 

Modified: trunk/libsoap-lite-perl/lib/XMLRPC/Test.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/XMLRPC/Test.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/XMLRPC/Test.pm (original)
+++ trunk/libsoap-lite-perl/lib/XMLRPC/Test.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: Test.pm 249 2008-05-05 20:35:05Z kutterma $
+# $Id: Test.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,7 +12,7 @@
 
 use 5.004;
 use vars qw($VERSION $TIMEOUT);
-use version; $VERSION = qv('0.710.05');
+use version; $VERSION = qv('0.710.10');
 
 $TIMEOUT = 5;
 

Modified: trunk/libsoap-lite-perl/lib/XMLRPC/Transport/HTTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/XMLRPC/Transport/HTTP.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/XMLRPC/Transport/HTTP.pm (original)
+++ trunk/libsoap-lite-perl/lib/XMLRPC/Transport/HTTP.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: HTTP.pm 51 2004-11-14 19:30:50Z byrnereese $
+# $Id: HTTP.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,10 +12,9 @@
 
 use strict;
 use vars qw($VERSION);
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $XMLRPC::Lite::VERSION;
 
-use XMLRPC::Lite;
+use XMLRPC::Lite; $VERSION = $XMLRPC::Lite::VERSION;
+
 use SOAP::Transport::HTTP;
 
 # ======================================================================

Modified: trunk/libsoap-lite-perl/lib/XMLRPC/Transport/POP3.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/XMLRPC/Transport/POP3.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/XMLRPC/Transport/POP3.pm (original)
+++ trunk/libsoap-lite-perl/lib/XMLRPC/Transport/POP3.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: POP3.pm 51 2004-11-14 19:30:50Z byrnereese $
+# $Id: POP3.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,10 +12,8 @@
 
 use strict;
 use vars qw($VERSION);
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $XMLRPC::Lite::VERSION;
+use XMLRPC::Lite; $VERSION = $XMLRPC::Lite::VERSION;
 
-use XMLRPC::Lite;
 use SOAP::Transport::POP3;
 
 # ======================================================================

Modified: trunk/libsoap-lite-perl/lib/XMLRPC/Transport/TCP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsoap-lite-perl/lib/XMLRPC/Transport/TCP.pm?rev=45243&op=diff
==============================================================================
--- trunk/libsoap-lite-perl/lib/XMLRPC/Transport/TCP.pm (original)
+++ trunk/libsoap-lite-perl/lib/XMLRPC/Transport/TCP.pm Fri Oct  2 17:32:59 2009
@@ -4,7 +4,7 @@
 # SOAP::Lite is free software; you can redistribute it
 # and/or modify it under the same terms as Perl itself.
 #
-# $Id: TCP.pm 51 2004-11-14 19:30:50Z byrnereese $
+# $Id: TCP.pm 341 2009-09-30 18:34:58Z kutterma $
 #
 # ======================================================================
 
@@ -12,10 +12,10 @@
 
 use strict;
 use vars qw($VERSION);
-#$VERSION = sprintf("%d.%s", map {s/_//g; $_} q$Name$ =~ /-(\d+)_([\d_]+)/);
-$VERSION = $XMLPRC::Lite::VERSION;
 
-use XMLRPC::Lite;
+use XMLRPC::Lite; $VERSION = $XMLPRC::Lite::VERSION;
+
+
 use SOAP::Transport::TCP;
 
 # ======================================================================




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