r7910 - in /trunk/libclass-accessor-perl/debian: changelog control patches/ patches/manpage_typo.diff patches/series rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Sep 23 18:55:33 UTC 2007


Author: gregoa-guest
Date: Sun Sep 23 18:55:33 2007
New Revision: 7910

URL: http://svn.debian.org/wsvn/?sc=1&rev=7910
Log:
Add patch to fix errors in manpage (closes: #443737).

Added:
    trunk/libclass-accessor-perl/debian/patches/
    trunk/libclass-accessor-perl/debian/patches/manpage_typo.diff
    trunk/libclass-accessor-perl/debian/patches/series
Modified:
    trunk/libclass-accessor-perl/debian/changelog
    trunk/libclass-accessor-perl/debian/control
    trunk/libclass-accessor-perl/debian/rules

Modified: trunk/libclass-accessor-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libclass-accessor-perl/debian/changelog?rev=7910&op=diff
==============================================================================
--- trunk/libclass-accessor-perl/debian/changelog (original)
+++ trunk/libclass-accessor-perl/debian/changelog Sun Sep 23 18:55:33 2007
@@ -1,3 +1,9 @@
+libclass-accessor-perl (0.31-2) unstable; urgency=low
+
+  * Add patch to fix errors in manpage (closes: #443737).
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun, 23 Sep 2007 20:54:41 +0200
+
 libclass-accessor-perl (0.31-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libclass-accessor-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libclass-accessor-perl/debian/control?rev=7910&op=diff
==============================================================================
--- trunk/libclass-accessor-perl/debian/control (original)
+++ trunk/libclass-accessor-perl/debian/control Sun Sep 23 18:55:33 2007
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>, gregor herrmann <gregor+debian at comodo.priv.at>
-Build-Depends: debhelper (>= 5)
+Build-Depends: debhelper (>= 5), quilt
 Build-Depends-Indep: perl (>= 5.6.0-16)
 Standards-Version: 3.7.2
 XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-accessor-perl/

Added: trunk/libclass-accessor-perl/debian/patches/manpage_typo.diff
URL: http://svn.debian.org/wsvn/trunk/libclass-accessor-perl/debian/patches/manpage_typo.diff?rev=7910&op=file
==============================================================================
--- trunk/libclass-accessor-perl/debian/patches/manpage_typo.diff (added)
+++ trunk/libclass-accessor-perl/debian/patches/manpage_typo.diff Sun Sep 23 18:55:33 2007
@@ -1,0 +1,55 @@
+Index: libclass-accessor-perl/lib/Class/Accessor.pm
+===================================================================
+--- libclass-accessor-perl.orig/lib/Class/Accessor.pm	2007-09-23 20:46:35.000000000 +0200
++++ libclass-accessor-perl/lib/Class/Accessor.pm	2007-09-23 20:50:22.000000000 +0200
+@@ -55,7 +55,7 @@
+ One for each piece of data in your object.  While some will be unique,
+ doing value checks and special storage tricks, most will simply be
+ exercises in repetition.  Not only is it Bad Style to have a bunch of
+-repetitious code, but its also simply not lazy, which is the real
++repetitious code, but it's also simply not lazy, which is the real
+ tragedy.
+ 
+ If you make your module a subclass of Class::Accessor and declare your
+@@ -233,8 +233,8 @@
+ it will throw an exception.  It only uses set() and not get().
+ 
+ B<NOTE> I'm not entirely sure why this is useful, but I'm sure someone
+-will need it.  If you've found a use, let me know.  Right now its here
+-for orthoginality and because its easy to implement.
++will need it.  If you've found a use, let me know.  Right now it's here
++for orthoginality and because it's easy to implement.
+ 
+     package Foo;
+     use base qw(Class::Accessor);
+@@ -505,7 +505,7 @@
+ Direct hash access is, of course, much faster than all of these, but it
+ provides no encapsulation.
+ 
+-Of course, its not as simple as saying "Class::Accessor is slower than
++Of course, it's not as simple as saying "Class::Accessor is slower than
+ average".  These are benchmarks for a simple accessor.  If your accessors do
+ any sort of complicated work (such as talking to a database or writing to a
+ file) the time spent doing that work will quickly swamp the time spend just
+@@ -611,7 +611,7 @@
+         return $self->SUPER::email(@_);
+     }
+ 
+-There's a subtle problem in the last example, and its in this line:
++There's a subtle problem in the last example, and it's in this line:
+ 
+     return $self->SUPER::email(@_);
+ 
+Index: libclass-accessor-perl/README
+===================================================================
+--- libclass-accessor-perl.orig/README	2007-09-23 20:48:38.000000000 +0200
++++ libclass-accessor-perl/README	2007-09-23 20:49:12.000000000 +0200
+@@ -31,7 +31,7 @@
+     One for each piece of data in your object. While some will be unique,
+     doing value checks and special storage tricks, most will simply be
+     exercises in repetition. Not only is it Bad Style to have a bunch of
+-    repetitious code, but its also simply not lazy, which is the real
++    repetitious code, but it's also simply not lazy, which is the real
+     tragedy.
+ 
+     If you make your module a subclass of Class::Accessor and declare your

Added: trunk/libclass-accessor-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libclass-accessor-perl/debian/patches/series?rev=7910&op=file
==============================================================================
--- trunk/libclass-accessor-perl/debian/patches/series (added)
+++ trunk/libclass-accessor-perl/debian/patches/series Sun Sep 23 18:55:33 2007
@@ -1,0 +1,1 @@
+manpage_typo.diff

Modified: trunk/libclass-accessor-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libclass-accessor-perl/debian/rules?rev=7910&op=diff
==============================================================================
--- trunk/libclass-accessor-perl/debian/rules (original)
+++ trunk/libclass-accessor-perl/debian/rules Sun Sep 23 18:55:33 2007
@@ -4,6 +4,8 @@
 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
+
+include /usr/share/quilt/quilt.make
 
 # Define the perl interpreter
 
@@ -22,7 +24,7 @@
 	touch configure-stamp
 
 
-build: build-stamp
+build: patch build-stamp
 build-stamp: configure-stamp 
 	dh_testdir
 
@@ -30,7 +32,7 @@
 	$(MAKE) test
 	touch build-stamp
 
-clean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
 




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