r14663 - in /branches/upstream/libnet-sftp-foreign-perl/current: Changes META.yml README lib/Net/SFTP/Foreign.pm

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Feb 10 02:08:48 UTC 2008


Author: gregoa-guest
Date: Sun Feb 10 02:08:47 2008
New Revision: 14663

URL: http://svn.debian.org/wsvn/?sc=1&rev=14663
Log:
[svn-upgrade] Integrating new upstream version, libnet-sftp-foreign-perl (1.35+dfsg)

Modified:
    branches/upstream/libnet-sftp-foreign-perl/current/Changes
    branches/upstream/libnet-sftp-foreign-perl/current/META.yml
    branches/upstream/libnet-sftp-foreign-perl/current/README
    branches/upstream/libnet-sftp-foreign-perl/current/lib/Net/SFTP/Foreign.pm

Modified: branches/upstream/libnet-sftp-foreign-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libnet-sftp-foreign-perl/current/Changes?rev=14663&op=diff
==============================================================================
--- branches/upstream/libnet-sftp-foreign-perl/current/Changes (original)
+++ branches/upstream/libnet-sftp-foreign-perl/current/Changes Sun Feb 10 02:08:47 2008
@@ -1,4 +1,9 @@
 Revision history for Net::SFTP::Foreign
+
+1.35  8 Feb, 2008
+        - put method was failing for binary files under Windows
+          because binmode was not set on the local filehandler (bug
+          report and patch by Patrick Frazer).
 
 1.34  8 Jan, 2008
         - document rput. It said it was not implemented (bug report

Modified: branches/upstream/libnet-sftp-foreign-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libnet-sftp-foreign-perl/current/META.yml?rev=14663&op=diff
==============================================================================
--- branches/upstream/libnet-sftp-foreign-perl/current/META.yml (original)
+++ branches/upstream/libnet-sftp-foreign-perl/current/META.yml Sun Feb 10 02:08:47 2008
@@ -1,15 +1,15 @@
 --- #YAML:1.0
 name:                Net-SFTP-Foreign
-version:             1.34
+version:             1.35
 abstract:            Secure File Transfer Protocol client
 license:             ~
-author:              
-    - Salvador Fandino <sfandino at yahoo.com>
-generated_by:        ExtUtils::MakeMaker version 6.42
+generated_by:        ExtUtils::MakeMaker version 6.32
 distribution_type:   module
 requires:     
     Scalar::Util:                  0
     Test::More:                    0
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
+    version: 1.2
+author:
+    - Salvador Fandino <sfandino at yahoo.com>

Modified: branches/upstream/libnet-sftp-foreign-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libnet-sftp-foreign-perl/current/README?rev=14663&op=diff
==============================================================================
--- branches/upstream/libnet-sftp-foreign-perl/current/README (original)
+++ branches/upstream/libnet-sftp-foreign-perl/current/README Sun Feb 10 02:08:47 2008
@@ -1,11 +1,8 @@
 Net::SFTP::Foreign
 ===================
 
-Net::SFTP::Foreign implements an SFTP client in Perl.
-
-It's a forked version of Net::SFTP that uses an external ssh client to
-connect to the ssh server instead of the all Perl Net::SSH::Perl
-module.
+Net::SFTP::Foreign implements an SFTP client in Perl using the native
+SSH client application to stablish the connection to the remote host.
 
 
 PREREQUISITES
@@ -34,12 +31,12 @@
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2005, 2006 by Salvador Fandino
+Copyright (c) 2005-2008 by Salvador Fandino
 
 Copyright (c) 2001 Benjamin Trott, Copyright (c) 2003 David Rolsky.
 
 This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself, either Perl version 5.8.4 or,
+it under the same terms as Perl itself, either Perl version 5.8.8 or,
 at your option, any later version of Perl 5 you may have available.
 
 

Modified: branches/upstream/libnet-sftp-foreign-perl/current/lib/Net/SFTP/Foreign.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libnet-sftp-foreign-perl/current/lib/Net/SFTP/Foreign.pm?rev=14663&op=diff
==============================================================================
--- branches/upstream/libnet-sftp-foreign-perl/current/lib/Net/SFTP/Foreign.pm (original)
+++ branches/upstream/libnet-sftp-foreign-perl/current/lib/Net/SFTP/Foreign.pm Sun Feb 10 02:08:47 2008
@@ -1,6 +1,6 @@
 package Net::SFTP::Foreign;
 
-our $VERSION = '1.34';
+our $VERSION = '1.35';
 
 use strict;
 use warnings;
@@ -1583,6 +1583,8 @@
 			 "Unable to open local file '$local'", $!);
 	return undef;
     }
+
+    binmode $fh;
 
     my ($lmode, $lsize, $latime, $lmtime);
     unless ((undef, undef, $lmode, undef, undef,




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