r51965 - in /trunk/libclass-c3-perl/debian: README.source changelog control patches/ patches/fix-pod-spelling.patch patches/series rules

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Jan 31 23:58:20 UTC 2010


Author: jawnsy-guest
Date: Sun Jan 31 23:58:15 2010
New Revision: 51965

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=51965
Log:
Add a patch to fix POD spelling errors

Added:
    trunk/libclass-c3-perl/debian/README.source
    trunk/libclass-c3-perl/debian/patches/
    trunk/libclass-c3-perl/debian/patches/fix-pod-spelling.patch
    trunk/libclass-c3-perl/debian/patches/series
Modified:
    trunk/libclass-c3-perl/debian/changelog
    trunk/libclass-c3-perl/debian/control
    trunk/libclass-c3-perl/debian/rules

Added: trunk/libclass-c3-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-c3-perl/debian/README.source?rev=51965&op=file
==============================================================================
--- trunk/libclass-c3-perl/debian/README.source (added)
+++ trunk/libclass-c3-perl/debian/README.source Sun Jan 31 23:58:15 2010
@@ -1,0 +1,5 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+ 
+See /usr/share/doc/quilt/README.source for a detailed explanation.

Modified: trunk/libclass-c3-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-c3-perl/debian/changelog?rev=51965&op=diff
==============================================================================
--- trunk/libclass-c3-perl/debian/changelog (original)
+++ trunk/libclass-c3-perl/debian/changelog Sun Jan 31 23:58:15 2010
@@ -10,11 +10,12 @@
   * Drop unnecessary version dependencies
   * Refresh copyright to new DEP5 format
   * Add copyright info for M::I
+  * Add a patch to fix POD spelling errors
 
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 
- -- Jonathan Yu <jawnsy at cpan.org>  Sun, 31 Jan 2010 19:06:10 -0500
+ -- Jonathan Yu <jawnsy at cpan.org>  Sun, 31 Jan 2010 19:10:35 -0500
 
 libclass-c3-perl (0.21-1) unstable; urgency=low
 

Modified: trunk/libclass-c3-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-c3-perl/debian/control?rev=51965&op=diff
==============================================================================
--- trunk/libclass-c3-perl/debian/control (original)
+++ trunk/libclass-c3-perl/debian/control Sun Jan 31 23:58:15 2010
@@ -1,13 +1,13 @@
 Source: libclass-c3-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7)
 Build-Depends-Indep: perl, libtest-exception-perl, libtest-pod-perl,
  libtest-pod-coverage-perl, libsub-name-perl, libalgorithm-c3-perl,
  libclass-c3-xs-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Krzysztof Krzyżaniak (eloy) <eloy at debian.org>
-Standards-Version: 3.8.1
+Standards-Version: 3.8.4
 Homepage: http://search.cpan.org/dist/Class-C3/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-c3-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libclass-c3-perl/

Added: trunk/libclass-c3-perl/debian/patches/fix-pod-spelling.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-c3-perl/debian/patches/fix-pod-spelling.patch?rev=51965&op=file
==============================================================================
--- trunk/libclass-c3-perl/debian/patches/fix-pod-spelling.patch (added)
+++ trunk/libclass-c3-perl/debian/patches/fix-pod-spelling.patch Sun Jan 31 23:58:15 2010
@@ -1,0 +1,51 @@
+Description: fix POD spelling
+Author: Jonathan Yu <jawnsy at cpan.org>
+Origin: vendor
+Forwarded: no
+--- a/lib/Class/C3.pm
++++ b/lib/Class/C3.pm
+@@ -280,13 +280,13 @@
+ 
+ C3 is the name of an algorithm which aims to provide a sane method resolution order under multiple
+ inheritence. It was first introduced in the langauge Dylan (see links in the L<SEE ALSO> section),
+-and then later adopted as the prefered MRO (Method Resolution Order) for the new-style classes in
++and then later adopted as the preferred MRO (Method Resolution Order) for the new-style classes in
+ Python 2.3. Most recently it has been adopted as the 'canonical' MRO for Perl 6 classes, and the
+ default MRO for Parrot objects as well.
+ 
+ =head2 How does C3 work.
+ 
+-C3 works by always preserving local precendence ordering. This essentially means that no class will
++C3 works by always preserving local precedence ordering. This essentially means that no class will
+ appear before any of it's subclasses. Take the classic diamond inheritence pattern for instance:
+ 
+      <A>
+@@ -340,7 +340,7 @@
+ 
+ =item B<initialize>
+ 
+-This B<must be called> to initalize the C3 method dispatch tables, this module B<will not work> if
++This B<must be called> to initialize the C3 method dispatch tables, this module B<will not work> if
+ you do not do this. It is advised to do this as soon as possible B<after> loading any classes which
+ use C3. Here is a quick code example:
+ 
+@@ -445,7 +445,7 @@
+ 
+ =item Use of C<SUPER::>.
+ 
+-The idea of C<SUPER::> under multiple inheritence is ambigious, and generally not recomended anyway.
++The idea of C<SUPER::> under multiple inheritence is ambiguous, and generally not recomended anyway.
+ However, it's use in conjuntion with this module is very much not recommended, and in fact very
+ discouraged. The recommended approach is to instead use the supplied C<next::method> feature, see
+ more details on it's usage above.
+--- a/lib/Class/C3/next.pm
++++ b/lib/Class/C3/next.pm
+@@ -83,7 +83,7 @@
+ =head1 DESCRIPTION
+ 
+ This module is used internally by L<Class::C3> when
+-neccesary, and shouldn't be used (or required in
++necessary, and shouldn't be used (or required in
+ distribution dependencies) directly.  It
+ defines C<next::method>, C<next::can>, and
+ C<maybe::next::method> in pure perl.

Added: trunk/libclass-c3-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-c3-perl/debian/patches/series?rev=51965&op=file
==============================================================================
--- trunk/libclass-c3-perl/debian/patches/series (added)
+++ trunk/libclass-c3-perl/debian/patches/series Sun Jan 31 23:58:15 2010
@@ -1,0 +1,1 @@
+fix-pod-spelling.patch

Modified: trunk/libclass-c3-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-c3-perl/debian/rules?rev=51965&op=diff
==============================================================================
--- trunk/libclass-c3-perl/debian/rules (original)
+++ trunk/libclass-c3-perl/debian/rules Sun Jan 31 23:58:15 2010
@@ -1,4 +1,4 @@
 #!/usr/bin/make -f
 
 %:
-	dh $@
+	dh --with quilt $@




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