r70090 - in /trunk/libclass-autouse-perl: debian/changelog debian/control debian/patches/ debian/patches/fix-spelling-error-in-manpage.patch debian/patches/series lib/Class/Autouse.pm

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Mon Feb 28 17:45:49 UTC 2011


Author: ghedo-guest
Date: Mon Feb 28 17:45:22 2011
New Revision: 70090

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70090
Log:
* Fix debian-control-has-unusual-field-spacing lintian
* Add libprefork-perl to (Build-)Depends(-Indep)
* Add fix-spelling-error-in-manpage patch

Added:
    trunk/libclass-autouse-perl/debian/patches/
    trunk/libclass-autouse-perl/debian/patches/fix-spelling-error-in-manpage.patch
    trunk/libclass-autouse-perl/debian/patches/series
Modified:
    trunk/libclass-autouse-perl/debian/changelog
    trunk/libclass-autouse-perl/debian/control
    trunk/libclass-autouse-perl/lib/Class/Autouse.pm

Modified: trunk/libclass-autouse-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-autouse-perl/debian/changelog?rev=70090&op=diff
==============================================================================
--- trunk/libclass-autouse-perl/debian/changelog (original)
+++ trunk/libclass-autouse-perl/debian/changelog Mon Feb 28 17:45:22 2011
@@ -9,6 +9,9 @@
   * Bump Standards-Version
     - Remove versioned B-D-I on perl
   * Do not install upstream README anymore (duplicate of POD)
+  * Fix debian-control-has-unusual-field-spacing lintian
+  * Add libprefork-perl to (Build-)Depends(-Indep)
+  * Add fix-spelling-error-in-manpage patch
 
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN

Modified: trunk/libclass-autouse-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-autouse-perl/debian/control?rev=70090&op=diff
==============================================================================
--- trunk/libclass-autouse-perl/debian/control (original)
+++ trunk/libclass-autouse-perl/debian/control Mon Feb 28 17:45:22 2011
@@ -2,7 +2,9 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 8)
-Build-Depends-Indep: perl, libextutils-autoinstall-perl
+Build-Depends-Indep: perl,
+ libextutils-autoinstall-perl,
+ libprefork-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Gunnar Wolf <gwolf at debian.org>,
  Alessandro Ghedini <al3xbio at gmail.com>
@@ -13,8 +15,10 @@
 
 Package: libclass-autouse-perl
 Architecture: all
-Depends: ${misc:Depends}, ${perl:Depends}, libextutils-autoinstall-perl
-Description:  Defer loading ( 'use'ing ) of a class until run time
+Depends: ${misc:Depends}, ${perl:Depends},
+ libextutils-autoinstall-perl,
+ libprefork-perl
+Description: Defer loading ( 'use'ing ) of a class until run time
  Class::Autouse allows you to specify a class the will only load when a
  method of the class is called. For large classes that might not be used
  during the running of a program, such as Date::Manip, this can save

Added: trunk/libclass-autouse-perl/debian/patches/fix-spelling-error-in-manpage.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-autouse-perl/debian/patches/fix-spelling-error-in-manpage.patch?rev=70090&op=file
==============================================================================
--- trunk/libclass-autouse-perl/debian/patches/fix-spelling-error-in-manpage.patch (added)
+++ trunk/libclass-autouse-perl/debian/patches/fix-spelling-error-in-manpage.patch Mon Feb 28 17:45:22 2011
@@ -1,0 +1,23 @@
+Fix a couple of spelling errors found by lintian
+Index: libclass-autouse-perl/lib/Class/Autouse.pm
+===================================================================
+--- libclass-autouse-perl.orig/lib/Class/Autouse.pm
++++ libclass-autouse-perl/lib/Class/Autouse.pm
+@@ -966,7 +966,7 @@
+ to use a subroutine directly, say with C<Class::method()>, the class will
+ not be loaded and a fatal error will mostly likely occur.
+
+-This limitation is made to allow more powerfull features in other areas,
++This limitation is made to allow more powerful features in other areas,
+ because we can focus on just loading the modules, and not have
+ to deal with importing.
+
+@@ -1145,7 +1145,7 @@
+
+ When Perl is unable to find a subroutine/method, and all of the class loaders
+ are exhausted, callbacks registered via sugar() are called.  The callbacks
+-recieve the class name, method name, and parameters of the call.
++receive the class name, method name, and parameters of the call.
+
+ If the callback returns nothing, Class::Autouse will continue to iterate through
+ other callbacks.  The first callback which returns a true value will

Added: trunk/libclass-autouse-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-autouse-perl/debian/patches/series?rev=70090&op=file
==============================================================================
--- trunk/libclass-autouse-perl/debian/patches/series (added)
+++ trunk/libclass-autouse-perl/debian/patches/series Mon Feb 28 17:45:22 2011
@@ -1,0 +1,1 @@
+fix-spelling-error-in-manpage.patch

Modified: trunk/libclass-autouse-perl/lib/Class/Autouse.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-autouse-perl/lib/Class/Autouse.pm?rev=70090&op=diff
==============================================================================
--- trunk/libclass-autouse-perl/lib/Class/Autouse.pm (original)
+++ trunk/libclass-autouse-perl/lib/Class/Autouse.pm Mon Feb 28 17:45:22 2011
@@ -966,7 +966,7 @@
 to use a subroutine directly, say with C<Class::method()>, the class will
 not be loaded and a fatal error will mostly likely occur.
 
-This limitation is made to allow more powerfull features in other areas,
+This limitation is made to allow more powerful features in other areas,
 because we can focus on just loading the modules, and not have
 to deal with importing.
 
@@ -1145,7 +1145,7 @@
 
 When Perl is unable to find a subroutine/method, and all of the class loaders
 are exhausted, callbacks registered via sugar() are called.  The callbacks
-recieve the class name, method name, and parameters of the call.
+receive the class name, method name, and parameters of the call.
 
 If the callback returns nothing, Class::Autouse will continue to iterate through
 other callbacks.  The first callback which returns a true value will




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