[libparanoid-perl] 12/13: Create patch to fix typo in manpage

Lucas Kanashiro kanashiro at moszumanska.debian.org
Wed Jun 29 17:56:53 UTC 2016


This is an automated email from the git hooks/post-receive script.

kanashiro pushed a commit to branch master
in repository libparanoid-perl.

commit b1c50468b3f342cd0ba40205d1cfab181b0647b2
Author: Lucas Kanashiro <kanashiro at debian.org>
Date:   Wed Jun 29 14:48:33 2016 -0300

    Create patch to fix typo in manpage
---
 debian/changelog                              |   1 +
 debian/patches/0001_fix-typo-in-manpage.patch | 150 ++++++++++++++++++++++++++
 debian/patches/series                         |   1 +
 3 files changed, 152 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index ba377e5..25dd013 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -20,6 +20,7 @@ libparanoid-perl (2.01-1) UNRELEASED; urgency=medium
   * Bump debhelper compatibility level to 9
   * Declare compliance with Debian policy 3.9.8
   * debian/control: update build and runtime dependencies, thanks cme
+  * Create patch to fix typo in manpage
 
  -- Lucas Kanashiro <kanashiro at debian.org>  Wed, 29 Jun 2016 14:03:20 -0300
 
diff --git a/debian/patches/0001_fix-typo-in-manpage.patch b/debian/patches/0001_fix-typo-in-manpage.patch
new file mode 100644
index 0000000..4fcf2ea
--- /dev/null
+++ b/debian/patches/0001_fix-typo-in-manpage.patch
@@ -0,0 +1,150 @@
+Description: Fix typo in manpage
+Author: Lucas Kanashiro <kanashiro at debian.org>
+Last-Updated: 2016-06-29
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=115735
+Bug: https://rt.cpan.org/Ticket/Display.html?id=115735
+
+--- a/lib/Paranoid/Args.pm
++++ b/lib/Paranoid/Args.pm
+@@ -1045,7 +1045,7 @@ Each time B<parseArgs> is invoked this a
+ 
+   Paranoid::Args::clearMemory();
+ 
+-If the existance of a (most likely) lightly populated array bothers you, you
++If the existence of a (most likely) lightly populated array bothers you, you
+ may use this function to empty all internal data structures of their contents.
+ Like B<listErrors> this function is not exported.
+ 
+@@ -1085,7 +1085,7 @@ be populated with:
+     );
+ 
+ The redundancy is intentional.  Regardless of whether you look up the short or
+-the long name you will be able to retrieve the cummulative value.
++the long name you will be able to retrieve the cumulative value.
+ 
+ The particulars of all key/value pairs in a template are documented below.
+ 
+--- a/lib/Paranoid/Debug.pm
++++ b/lib/Paranoid/Debug.pm
+@@ -294,7 +294,7 @@ be replaced with the literal string "I<u
+ 
+ One deviation from L<printf> allows you to specify a placeholder which can
+ gobble up any number of extra arguments while still performing the "I<undef>"
+-substituion:
++substitution:
+ 
+     pdebug("I was passed these values: %s", 3, @values);
+ 
+--- a/lib/Paranoid/Filesystem.pm
++++ b/lib/Paranoid/Filesystem.pm
+@@ -1158,7 +1158,7 @@ symlinks to be filtered out.
+   $cleaned = pcleanPath($filename);
+ 
+ This function takes a filename and cleans out any '.', '..', and '//+'
+-occurences within the path.  It does not remove '.' or '..' as the first path
++occurrences within the path.  It does not remove '.' or '..' as the first path
+ element, however, in order to preserve the root of the relative path.
+ 
+ B<NOTE:> this function does not do any checking to see if the passed
+--- a/lib/Paranoid/Glob.pm
++++ b/lib/Paranoid/Glob.pm
+@@ -711,7 +711,7 @@ character device node, just as a normal
+ 
+ This method with recursively load all filesystem entries underneath any
+ directories already listed in the object.  It returns true upon completion, or
+-false if any errors occured (such as Permission Denied).
++false if any errors occurred (such as Permission Denied).
+ 
+ Two optional boolean arguments can be passed to it:
+ 
+--- a/lib/Paranoid/IO.pm
++++ b/lib/Paranoid/IO.pm
+@@ -815,7 +815,7 @@ The features provided by this module are
+ 
+ =item * File handle caching
+ 
+-=item * Fork-safe file acess
++=item * Fork-safe file access
+ 
+ =item * Inherent file locking
+ 
+@@ -890,7 +890,7 @@ call) and file name.  This way you can s
+ of the process or its children's movements on the file system.
+ 
+ This could be, however, a double-edged sword if your program intends to open
+-indentically named files in multple locations.  If that is your intent you
++indentically named files in multiple locations.  If that is your intent you
+ would be cautioned to avoid using relative paths with I<popen>.
+ 
+ =head1 SUBROUTINES/METHODS
+@@ -960,7 +960,7 @@ fork.
+ 
+ Called with a list of file names means that only those files are examined and
+ reopened.  Any failure to reopen any single file handle will result in a false
+-return value.  That said, any failures will not interupt the function from
++return value.  That said, any failures will not interrupt the function from
+ trying every file in the list.
+ 
+ =head2 pcloseAll
+@@ -1015,7 +1015,7 @@ automatically.
+     $bytes = pread($fh, $text, $length, $offset);
+ 
+ This returns the number of bytes read, or undef on errors.  If this is called
+-prior to an explict I<popen> it will default to a mode of B<O_RDONLY>.  Length
++prior to an explicit I<popen> it will default to a mode of B<O_RDONLY>.  Length
+ defaults to B<PIOBLKSIZE>.
+ 
+ =head2 pnlread
+--- a/lib/Paranoid/IO/Line.pm
++++ b/lib/Paranoid/IO/Line.pm
+@@ -515,7 +515,7 @@ the file handle caching features provide
+ 
+ It should also be noted that since we're anticipating line-based records we
+ expect every line, even the last line in a file, to be properly terminated
+-with a record seperator (new line sequence).
++with a record separator (new line sequence).
+ 
+ As with all L<Paranoid> modules string descriptions of errors can be retrieved
+ from L<Paranoid::ERROR> as they occur.
+@@ -539,7 +539,7 @@ read in at up to L<PIOMAXFSIZE> in size
+ and autochomping is also supported.
+ 
+ This returns the number of lines extracted or boolean false if any errors
+-occured, such as lines exceeding I<PIOMAXLNSIZE> or other I/O errors.  If
++occurred, such as lines exceeding I<PIOMAXLNSIZE> or other I/O errors.  If
+ there were no errors but also no content it will return B<0 but true>, which
+ will satisfy boolean tests.
+ 
+--- a/lib/Paranoid/Log/File.pm
++++ b/lib/Paranoid/Log/File.pm
+@@ -281,7 +281,7 @@ L<Paranoid::Log>
+ This isn't a high performance module when dealing with a high logging rate
+ with high concurrency.  This is due to the advisory locking requirement and
+ the seeks to the end of the file with every message.  This facility is
+-intended as a kind of lowest-common demoninator for programs that need some
++intended as a kind of lowest-common denominator for programs that need some
+ kind of logging capability.
+ 
+ =head1 AUTHOR
+--- a/lib/Paranoid/Network/IPv4.pm
++++ b/lib/Paranoid/Network/IPv4.pm
+@@ -341,7 +341,7 @@ Sorts in ascending order.
+ 
+ =head1 CONSTANTS
+ 
+-These are only imported if explicity requested or with the B<:all> tag.
++These are only imported if explicitly requested or with the B<:all> tag.
+ 
+ =head2 MAXIPV4CIDR
+ 
+--- a/lib/Paranoid/Network/IPv6.pm
++++ b/lib/Paranoid/Network/IPv6.pm
+@@ -472,7 +472,7 @@ Sorts in ascending order.  List of addre
+ 
+ =head1 CONSTANTS
+ 
+-These are only imported if explicity requested or with the B<:all> tag.
++These are only imported if explicitly requested or with the B<:all> tag.
+ 
+ =head2 MAXIPV6CIDR
+ 
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..f857c26
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001_fix-typo-in-manpage.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libparanoid-perl.git



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