r42077 - in /branches/upstream/libnet-ssh2-perl/current: Changes META.yml lib/Net/SSH2.pm

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Tue Aug 18 17:52:54 UTC 2009


Author: carnil-guest
Date: Tue Aug 18 17:52:49 2009
New Revision: 42077

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=42077
Log:
[svn-upgrade] Integrating new upstream version, libnet-ssh2-perl (0.23)

Modified:
    branches/upstream/libnet-ssh2-perl/current/Changes
    branches/upstream/libnet-ssh2-perl/current/META.yml
    branches/upstream/libnet-ssh2-perl/current/lib/Net/SSH2.pm

Modified: branches/upstream/libnet-ssh2-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-ssh2-perl/current/Changes?rev=42077&op=diff
==============================================================================
--- branches/upstream/libnet-ssh2-perl/current/Changes (original)
+++ branches/upstream/libnet-ssh2-perl/current/Changes Tue Aug 18 17:52:49 2009
@@ -2,6 +2,9 @@
 
 Developer/maintainer: David B. Robins <dbrobins at cpan.org>.
 Project started 2005-10-23 in Redmond, Washington, USA.
+
+0.23  2009-08-18 04:00:42
+        - Fix timeout option (forgot key)
 
 0.22  2009-08-15 11:10:03
         - "or die" semantics for ->connect (in non-void context)

Modified: branches/upstream/libnet-ssh2-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-ssh2-perl/current/META.yml?rev=42077&op=diff
==============================================================================
--- branches/upstream/libnet-ssh2-perl/current/META.yml (original)
+++ branches/upstream/libnet-ssh2-perl/current/META.yml Tue Aug 18 17:52:49 2009
@@ -21,7 +21,7 @@
 provides:
   Net::SSH2:
     file: lib/Net/SSH2.pm
-    version: 0.22
+    version: 0.23
   Net::SSH2::Channel:
     file: lib/Net/SSH2/Channel.pm
   Net::SSH2::Dir:
@@ -39,4 +39,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/rkitover/net-ssh2.git
-version: 0.22
+version: 0.23

Modified: branches/upstream/libnet-ssh2-perl/current/lib/Net/SSH2.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-ssh2-perl/current/lib/Net/SSH2.pm?rev=42077&op=diff
==============================================================================
--- branches/upstream/libnet-ssh2-perl/current/lib/Net/SSH2.pm (original)
+++ branches/upstream/libnet-ssh2-perl/current/lib/Net/SSH2.pm Tue Aug 18 17:52:49 2009
@@ -188,7 +188,7 @@
 
 our @EXPORT_OK = @{$EXPORT_TAGS{all}};
 
-our $VERSION = '0.22';
+our $VERSION = '0.23';
 
 # methods
 
@@ -219,7 +219,7 @@
         $sock = IO::Socket::INET->new(
             PeerHost => $_[0],
             PeerPort => $_[1],
-            $opts{Timeout},
+            Timeout => $opts{Timeout},
         );
 
         if (not $sock) {




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