[SCM] Debian packaging of libnet-sftp-foreign-perl branch, master, updated. debian/1.69+dfsg-1-10-gfa8c273

Salvatore Bonaccorso carnil at debian.org
Sat Mar 17 18:00:25 UTC 2012


The following commit has been merged in the master branch:
commit e4be3a458114fb73b22d6bba2d8ae03ae65868e6
Author: Salvatore Bonaccorso <carnil at debian.org>
Date:   Sat Mar 17 18:47:53 2012 +0100

    Drop spelling.patch patch
    
    Spelling fixes are applied upstream.

diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 5299247..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-spelling.patch
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
deleted file mode 100644
index 71b4849..0000000
--- a/debian/patches/spelling.patch
+++ /dev/null
@@ -1,158 +0,0 @@
-Subject: spelling
-Bug: https://rt.cpan.org/Ticket/Display.html?id=73165
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=73165
-Author: Nicholas Bamber <nicholas at periapt.co.uk>
-Reviewed-by: gregor herrmann <gregoa at debian.org>
-Last-Update: 2011-12-10
-
---- a/lib/Net/SFTP/Foreign.pm
-+++ b/lib/Net/SFTP/Foreign.pm
-@@ -3402,7 +3402,7 @@
- knows nothing about the character encoding used on the remote
- filesystem to represent file and directory names.
- 
--This option allows to select the encoding used in the remote
-+This option allows one to select the encoding used in the remote
- machine. The default value is C<utf8>.
- 
- For instance:
-@@ -3471,7 +3471,7 @@
- 
- =item transport =E<gt> [$in_fh, $out_fh, $pid]
- 
--allows to use an already open pipe or socket as the transport for the
-+allows one to use an already open pipe or socket as the transport for the
- SFTP protocol.
- 
- It can be (ab)used to make this module work with password
-@@ -3489,7 +3489,7 @@
- 
- =item open2_cmd =E<gt> $cmd;
- 
--allows to completely redefine how C<ssh> is called. Its arguments are
-+allows one to completely redefine how C<ssh> is called. Its arguments are
- passed to L<IPC::Open2::open2> to open a pipe to the remote
- server.
- 
-@@ -3563,7 +3563,7 @@
- that results on the SSH connection being closed by the first process
- where the object goes out of scope, something undesirable.
- 
--This option allows to work-around this issue to some extend.
-+This option allows one to work-around this issue to some extend.
- 
- The acceptable values for C<$ad> are:
- 
-@@ -3687,7 +3687,7 @@
- 
- =item umask =E<gt> $umask
- 
--allows to select the umask to apply when setting the permissions of
-+allows one to select the umask to apply when setting the permissions of
- the copied file. Default is to use the umask for the current process.
- 
- =item perm =E<gt> $perm
-@@ -3805,7 +3805,7 @@
- =item queue_size =E<gt> $size
- 
- read and write requests are pipelined in order to maximize transfer
--throughput. This option allows to set the maximum number of requests
-+throughput. This option allows one to set the maximum number of requests
- that can be concurrently waiting for a server response.
- 
- =back
-@@ -3859,7 +3859,7 @@
- 
- =item umask =E<gt> $umask
- 
--allows to select the umask to apply when setting the permissions of
-+allows one to select the umask to apply when setting the permissions of
- the copied file. Default is to use the umask for the current process.
- 
- =item perm =E<gt> $perm
-@@ -3897,7 +3897,7 @@
- once the copy completes is renamed to the target destination.
- 
- This operation relies on the SSH server to perform an
--overwriting/non-overwritting atomic rename operation free of race
-+overwriting/non-overwriting atomic rename operation free of race
- conditions.
- 
- OpenSSH server does it correctly on top of Linux/UNIX native file
-@@ -3952,7 +3952,7 @@
- =item queue_size =E<gt> $size
- 
- read and write requests are pipelined in order to maximize transfer
--throughput. This option allows to set the maximum number of requests
-+throughput. This option allows one to set the maximum number of requests
- that can be concurrently waiting for a server response.
- 
- =item late_set_perm =E<gt> $bool
-@@ -4310,7 +4310,7 @@
- 
- =item no_wanted =E<gt> ...
- 
--This option allows to select which files and directories have to be
-+This option allows one to select which files and directories have to be
- copied. See also C<ls> method docs.
- 
- If a directory is discarded all of its contents are also discarded (as
-@@ -4380,7 +4380,7 @@
- 
- =item no_wanted =E<gt> ...
- 
--This option allows to select which files and directories have to be
-+This option allows one to select which files and directories have to be
- copied. See also C<ls> method docs.
- 
- If a directory is discarded all of its contents are also discarded (as
-@@ -4484,12 +4484,12 @@
-     or die $sftp->error;
-   while (<$fh1>) { ... }
- 
--  # writting to the remote file
-+  # writing to the remote file
-   use Net::SFTP::Foreign::Constants qw(:flags);
-   my $fh2 = $sftp->open("/foo/bar", SSH2_FXF_WRITE|SSH2_FXF_CREAT)
-     or die $sftp->error;
-   print $fh2 "printing on the remote file\n";
--  $sftp->write($fh2, "writting more");
-+  $sftp->write($fh2, "writing more");
- 
- The C<$flags> bitmap determines how to open the remote file as defined
- in the SFTP protocol draft (the following constants can be imported
-@@ -4533,7 +4533,7 @@
- 
- =back
- 
--When creating a new remote file, C<$attrs> allows to set its initial
-+When creating a new remote file, C<$attrs> allows one to set its initial
- attributes. C<$attrs> has to be an object of class
- L<Net::SFTP::Foreign::Attributes>.
- 
-@@ -4943,7 +4943,7 @@
-      or die "unable to transfer file: " . $sftp->error;
- 
- Some servers do not support the C<fsetstat> method on open file
--handles. Setting this flag allows to delay that operation until the
-+handles. Setting this flag allows one to delay that operation until the
- file has been completely transferred and the remote file handle
- closed.
- 
-@@ -5110,14 +5110,14 @@
- Net::SFTP::Foreign integrates nicely with my other module
- L<Net::OpenSSH>.
- 
--L<Net::SFTP::Foreign::Backend::Net_SSH2> allows to run
-+L<Net::SFTP::Foreign::Backend::Net_SSH2> allows one to run
- Net::SFTP::Foreign on top of L<Net::SSH2> (nowadays, this combination
- is probably the best option under Windows).
- 
- Modules offering similar functionality available from CPAN are
- L<Net::SFTP> and L<Net::SSH2>.
- 
--L<Test::SFTP> allows to run tests against a remote SFTP server.
-+L<Test::SFTP> allows one to run tests against a remote SFTP server.
- 
- L<autodie>.
- 

-- 
Debian packaging of libnet-sftp-foreign-perl



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