Hello community,

here is the log from the commit of package perl-IO-Socket-SSL for 
openSUSE:Factory checked in at 2011-10-27 14:26:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-IO-Socket-SSL (Old)
 and      /work/SRC/openSUSE:Factory/.perl-IO-Socket-SSL.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-IO-Socket-SSL", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-IO-Socket-SSL/perl-IO-Socket-SSL.changes    
2011-10-18 14:36:12.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-IO-Socket-SSL.new/perl-IO-Socket-SSL.changes   
    2011-10-27 14:29:59.000000000 +0200
@@ -1,0 +2,22 @@
+Thu Oct 27 01:34:16 UTC 2011 - [email protected]
+
+- update to 1.48
+- bugfix for readline fix in 1.45. If the pending data where false
+  (like '0') it failed to read rest of line.
+  Thanks to Victor Popov for reporting
+  https://rt.cpan.org/Ticket/Display.html?id=71953
+
+-------------------------------------------------------------------
+Mon Oct 24 01:37:27 UTC 2011 - [email protected]
+
+- update to 1.47
+  fix for 1.46 - check for mswin32 needs to be /i. Thanks to
+  Alexandr Ciornii for reporting
+
+-------------------------------------------------------------------
+Wed Oct 19 01:37:24 UTC 2011 - [email protected]
+
+- update to 1.46
+  - added test for signals
+
+-------------------------------------------------------------------

Old:
----
  IO-Socket-SSL-1.45.tar.gz

New:
----
  IO-Socket-SSL-1.48.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-IO-Socket-SSL.spec ++++++
--- /var/tmp/diff_new_pack.cdKq7k/_old  2011-10-27 14:30:07.000000000 +0200
+++ /var/tmp/diff_new_pack.cdKq7k/_new  2011-10-27 14:30:07.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           perl-IO-Socket-SSL
-Version:        1.45
+Version:        1.48
 Release:        1
 License:        GPL+ or Artistic
 %define cpan_name IO-Socket-SSL

++++++ IO-Socket-SSL-1.45.tar.gz -> IO-Socket-SSL-1.48.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-SSL-1.45/Changes 
new/IO-Socket-SSL-1.48/Changes
--- old/IO-Socket-SSL-1.45/Changes      2011-10-12 11:03:23.000000000 +0200
+++ new/IO-Socket-SSL-1.48/Changes      2011-10-26 18:31:18.000000000 +0200
@@ -1,4 +1,16 @@
 
+v1.48 2011.10.26
+- bugfix for readline fix in 1.45. If the pending data where false
+  (like '0') it failed to read rest of line.
+  Thanks to Victor Popov for reporting
+  https://rt.cpan.org/Ticket/Display.html?id=71953
+v1.47 2011.10.21
+- fix for 1.46 - check for mswin32 needs to be /i. Thanks to
+  Alexandr Ciornii for reporting
+v1.46 2011.10.18
+- disable test t/signal-readline.t on windows, because signals are
+  not relevant for this platform and test does not work.
+  https://rt.cpan.org/Ticket/Display.html?id=71699
 v1.45 2011.10.12
 - fix readline to continue when getting interrupt waiting for more
   data. Thanks to kgc[AT]corp[DOT]sonic[DOT]net for reporting problem
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-SSL-1.45/META.yml 
new/IO-Socket-SSL-1.48/META.yml
--- old/IO-Socket-SSL-1.45/META.yml     2011-10-13 06:31:29.000000000 +0200
+++ new/IO-Socket-SSL-1.48/META.yml     2011-10-26 18:31:37.000000000 +0200
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               IO-Socket-SSL
-version:            1.45
+version:            1.48
 abstract:           Nearly transparent SSL encapsulation for IO::Socket::INET.
 author:
     - Steffen Ullrich & Peter Behroozi & Marko Asplund
@@ -17,7 +17,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.55_02
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-SSL-1.45/SSL.pm 
new/IO-Socket-SSL-1.48/SSL.pm
--- old/IO-Socket-SSL-1.45/SSL.pm       2011-10-13 06:29:31.000000000 +0200
+++ new/IO-Socket-SSL-1.48/SSL.pm       2011-10-26 18:31:18.000000000 +0200
@@ -78,7 +78,7 @@
        }) {
                @ISA = qw(IO::Socket::INET);
        }
-       $VERSION = '1.45';
+       $VERSION = '1.48';
        $GLOBAL_CONTEXT_ARGS = {};
 
        #Make $DEBUG another name for $Net::SSLeay::trace
@@ -810,7 +810,8 @@
 
                # peek into available data w/o reading
                my $pending = Net::SSLeay::pending($ssl);
-               if ( $pending and my $pb = Net::SSLeay::peek( $ssl,$pending ) ) 
{
+               if ( $pending and 
+                       ( my $pb = Net::SSLeay::peek( $ssl,$pending )) ne '' ) {
                        $buf .= $pb
                } else {
                        $self->blocking(0) if ! $was_blocking;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Socket-SSL-1.45/t/signal-readline.t 
new/IO-Socket-SSL-1.48/t/signal-readline.t
--- old/IO-Socket-SSL-1.45/t/signal-readline.t  2011-10-12 09:10:05.000000000 
+0200
+++ new/IO-Socket-SSL-1.48/t/signal-readline.t  2011-10-26 18:31:16.000000000 
+0200
@@ -10,6 +10,11 @@
        exit
 }
 
+if ( $^O =~m{mswin32}i ) {
+       print "1..0 # Skipped: signals not relevant on this platform\n";
+       exit
+}
+
 use vars qw( $SSL_SERVER_ADDR );
 do "t/ssl_settings.req" || do "ssl_settings.req";
 

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to