[libfindbin-libs-perl] 03/04: spelling-error.patch: update with a bunch of additional fixes.

Intrigeri intrigeri at moszumanska.debian.org
Sat Jun 24 13:39:29 UTC 2017


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

intrigeri pushed a commit to branch master
in repository libfindbin-libs-perl.

commit ed1f8513f69155be797a4a57cb22c95350dad005
Author: intrigeri <intrigeri at boum.org>
Date:   Sat Jun 24 13:35:19 2017 +0000

    spelling-error.patch: update with a bunch of additional fixes.
---
 debian/patches/spelling-error.patch | 214 ++++++++++++++++++++++++++++++++++--
 1 file changed, 203 insertions(+), 11 deletions(-)

diff --git a/debian/patches/spelling-error.patch b/debian/patches/spelling-error.patch
index 19db5b4..d982053 100644
--- a/debian/patches/spelling-error.patch
+++ b/debian/patches/spelling-error.patch
@@ -1,13 +1,57 @@
-Description: Spelling error
+From: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Date: Sat, 24 Jun 2017 13:27:07 +0000
+Subject: Fix spelling errors.
 Bug: https://rt.cpan.org/Ticket/Display.html?id=84315
 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=84315
-Author: Xavier Guimard <x.guimard at free.fr>
-Reviewed-by: gregor herrmann <gregoa at debian.org>
-Last-Update: 2014-09-07
+Author: intrigeri <intrigeri at debian.org>
 
---- a/libs_curr_pm
-+++ b/libs_curr_pm
-@@ -764,7 +764,7 @@
+---
+ lib/FindBin/libs.pm | 16 ++++++++--------
+ libs_curr_pm        | 16 ++++++++--------
+ libs_old_pm         | 14 +++++++-------
+ 3 files changed, 23 insertions(+), 23 deletions(-)
+
+diff --git a/lib/FindBin/libs.pm b/lib/FindBin/libs.pm
+index 9da2a60..924171e 100644
+--- a/lib/FindBin/libs.pm
++++ b/lib/FindBin/libs.pm
+@@ -525,7 +525,7 @@ Perl v5.10+.
+     use FindBin::libs qw( base=api_foo subdir=lib subonly );
+ 
+     # no harm in using this multiple times to use
+-    # or export multple layers of libs.
++    # or export multiple layers of libs.
+ 
+     use FindBin::libs qw( export                                            );
+     use FindBin::libs qw( export=found base=lib                             );
+@@ -542,7 +542,7 @@ and "use lib" or export an array of the directories found. The default
+ is to locate "lib" directories and "use lib" them without printing
+ the list.
+ 
+-Options controll whether the lib's found are exported into the caller's
++Options control whether the lib's found are exported into the caller's
+ space, exported to PERL5LIB, or printed. Exporting or setting perl5lib
+ will turn off the default of "use lib" so that:
+ 
+@@ -632,7 +632,7 @@ bin with
+     use FindBin::libs qw( export scalar base=etc );
+ 
+ will have an $etc variable with the absolute path to ./bin/../etc.
+-For configuration varibles this is usually what you want and allows
++For configuration variables this is usually what you want and allows
+ for "$etc/Foo.conf" rather than "$etc[0]/Foo.conf".
+ 
+ =item "append"
+@@ -746,7 +746,7 @@ since the argument ignore list replaces the original one.
+ 
+ =head2 Homegrown Library Management 
+ 
+-An all-too-common occurrance managing perly projects is
++An all-too-common occurrence managing perly projects is
+ being unable to install new modules becuse "it might 
+ break things", and being unable to test them because
+ you can't install them. The usual outcome of this is a 
+@@ -778,7 +778,7 @@ having to modify a single line of code.
  Say your sandbox is in ./sandbox and you are currently
  working in ./sandbox/projects/package/bin on a perl
  executable. You may have some number of modules that
@@ -16,9 +60,74 @@ Last-Update: 2014-09-07
  share some modules within the project, and may want 
  to use company-wide modules that are managed out of 
  ./sandbox in development. All of this lives under a 
---- a/lib/FindBin/libs.pm
-+++ b/lib/FindBin/libs.pm
-@@ -764,7 +764,7 @@
+@@ -862,7 +862,7 @@ sandbox area.
+ =item Managing Configuration and Meta-data Files
+ 
+ The "base" option alters FindBin::libs standard base directory.
+-This allows for a heirarchical set of metadata directories:
++This allows for a hierarchical set of metadata directories:
+ 
+     ./sandbox
+         ./meta
+@@ -1020,7 +1020,7 @@ Due to previous complaints that abs_path did not
+ work properly on all systems, the current 
+ version of FindBin::libs uses File::Spec to 
+ break apart and re-assemble directories, with 
+-abs_path used optinally. If "abs_path cwd" works 
++abs_path used optionally. If "abs_path cwd" works 
+ then abs_path is used on the directory paths 
+ handed by File::Spec::catpath(); otherwise the 
+ paths are used as-is. This may leave users on 
+@@ -1029,7 +1029,7 @@ copies of external library directories in @INC.
+ 
+ Another issue is that I've heard reports of 
+ some systems failing the '-d' test on symlinks,
+-where '-e' would have succeded. 
++where '-e' would have succeeded. 
+ 
+ =head1 See Also
+ 
+diff --git a/libs_curr_pm b/libs_curr_pm
+index 9da2a60..924171e 100644
+--- a/libs_curr_pm
++++ b/libs_curr_pm
+@@ -525,7 +525,7 @@ Perl v5.10+.
+     use FindBin::libs qw( base=api_foo subdir=lib subonly );
+ 
+     # no harm in using this multiple times to use
+-    # or export multple layers of libs.
++    # or export multiple layers of libs.
+ 
+     use FindBin::libs qw( export                                            );
+     use FindBin::libs qw( export=found base=lib                             );
+@@ -542,7 +542,7 @@ and "use lib" or export an array of the directories found. The default
+ is to locate "lib" directories and "use lib" them without printing
+ the list.
+ 
+-Options controll whether the lib's found are exported into the caller's
++Options control whether the lib's found are exported into the caller's
+ space, exported to PERL5LIB, or printed. Exporting or setting perl5lib
+ will turn off the default of "use lib" so that:
+ 
+@@ -632,7 +632,7 @@ bin with
+     use FindBin::libs qw( export scalar base=etc );
+ 
+ will have an $etc variable with the absolute path to ./bin/../etc.
+-For configuration varibles this is usually what you want and allows
++For configuration variables this is usually what you want and allows
+ for "$etc/Foo.conf" rather than "$etc[0]/Foo.conf".
+ 
+ =item "append"
+@@ -746,7 +746,7 @@ since the argument ignore list replaces the original one.
+ 
+ =head2 Homegrown Library Management 
+ 
+-An all-too-common occurrance managing perly projects is
++An all-too-common occurrence managing perly projects is
+ being unable to install new modules becuse "it might 
+ break things", and being unable to test them because
+ you can't install them. The usual outcome of this is a 
+@@ -778,7 +778,7 @@ having to modify a single line of code.
  Say your sandbox is in ./sandbox and you are currently
  working in ./sandbox/projects/package/bin on a perl
  executable. You may have some number of modules that
@@ -27,9 +136,38 @@ Last-Update: 2014-09-07
  share some modules within the project, and may want 
  to use company-wide modules that are managed out of 
  ./sandbox in development. All of this lives under a 
+@@ -862,7 +862,7 @@ sandbox area.
+ =item Managing Configuration and Meta-data Files
+ 
+ The "base" option alters FindBin::libs standard base directory.
+-This allows for a heirarchical set of metadata directories:
++This allows for a hierarchical set of metadata directories:
+ 
+     ./sandbox
+         ./meta
+@@ -1020,7 +1020,7 @@ Due to previous complaints that abs_path did not
+ work properly on all systems, the current 
+ version of FindBin::libs uses File::Spec to 
+ break apart and re-assemble directories, with 
+-abs_path used optinally. If "abs_path cwd" works 
++abs_path used optionally. If "abs_path cwd" works 
+ then abs_path is used on the directory paths 
+ handed by File::Spec::catpath(); otherwise the 
+ paths are used as-is. This may leave users on 
+@@ -1029,7 +1029,7 @@ copies of external library directories in @INC.
+ 
+ Another issue is that I've heard reports of 
+ some systems failing the '-d' test on symlinks,
+-where '-e' would have succeded. 
++where '-e' would have succeeded. 
+ 
+ =head1 See Also
+ 
+diff --git a/libs_old_pm b/libs_old_pm
+index fa4f840..07c4801 100644
 --- a/libs_old_pm
 +++ b/libs_old_pm
-@@ -392,7 +392,7 @@
+@@ -392,7 +392,7 @@ perl installations.
  FindBin::libs locates and performs a 'use lib' for 
  directories along the path of $FindBin::Bin to automate 
  locating modules.  Uses File::Spec and Cwd's abs_path to 
@@ -38,3 +176,57 @@ Last-Update: 2014-09-07
  
      # search up $FindBin::Bin looking for ./lib directories
      # and "use lib" them.
+@@ -476,7 +476,7 @@ accomodate multiple O/S and redundant symlinks.
+     use FindBin::libs qw( base=api_foo subdir=lib subonly );
+ 
+     # no harm in using this multiple times to use
+-    # or export multple layers of libs.
++    # or export multiple layers of libs.
+ 
+     use FindBin::libs qw( export                                            );
+     use FindBin::libs qw( export=found base=lib                             );
+@@ -493,7 +493,7 @@ and "use lib" or export an array of the directories found. The default
+ is to locate "lib" directories and "use lib" them without printing
+ the list.
+ 
+-Options controll whether the lib's found are exported into the caller's
++Options control whether the lib's found are exported into the caller's
+ space, exported to PERL5LIB, or printed. Exporting or setting perl5lib
+ will turn off the default of "use lib" so that:
+ 
+@@ -622,7 +622,7 @@ since the argument ignore list replaces the original one.
+ 
+ =head2 Homegrown Library Management 
+ 
+-An all-too-common occurrance managing perly projects is
++An all-too-common occurrence managing perly projects is
+ being unable to install new modules becuse "it might 
+ break things", and being unable to test them because
+ you can't install them. The usual outcome of this is a 
+@@ -738,7 +738,7 @@ sandbox area.
+ =item Managing Configuration and Meta-data Files
+ 
+ The "base" option alters FindBin::libs standard base directory.
+-This allows for a heirarchical set of metadata directories:
++This allows for a hierarchical set of metadata directories:
+ 
+     ./sandbox
+         ./meta
+@@ -896,7 +896,7 @@ Due to previous complaints that abs_path did not
+ work properly on all systems, the current 
+ version of FindBin::libs uses File::Spec to 
+ break apart and re-assemble directories, with 
+-abs_path used optinally. If "abs_path cwd" works 
++abs_path used optionally. If "abs_path cwd" works 
+ then abs_path is used on the directory paths 
+ handed by File::Spec::catpath(); otherwise the 
+ paths are used as-is. This may leave users on 
+@@ -905,7 +905,7 @@ copies of external library directories in @INC.
+ 
+ Another issue is that I've heard reports of 
+ some systems failing the '-d' test on symlinks,
+-where '-e' would have succeded. 
++where '-e' would have succeeded. 
+ 
+ =head1 See Also
+ 

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



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