r48938 - in /trunk/libpod-simple-perl/debian: README.source changelog control patches/ patches/pod.patch patches/series rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Dec 18 20:32:36 UTC 2009


Author: gregoa
Date: Fri Dec 18 20:32:31 2009
New Revision: 48938

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=48938
Log:
Add a patch to fix the POD and a test; add quilt framework.

Added:
    trunk/libpod-simple-perl/debian/README.source
    trunk/libpod-simple-perl/debian/patches/
    trunk/libpod-simple-perl/debian/patches/pod.patch
    trunk/libpod-simple-perl/debian/patches/series
Modified:
    trunk/libpod-simple-perl/debian/changelog
    trunk/libpod-simple-perl/debian/control
    trunk/libpod-simple-perl/debian/rules

Added: trunk/libpod-simple-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-simple-perl/debian/README.source?rev=48938&op=file
==============================================================================
--- trunk/libpod-simple-perl/debian/README.source (added)
+++ trunk/libpod-simple-perl/debian/README.source Fri Dec 18 20:32:31 2009
@@ -1,0 +1,6 @@
+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/libpod-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-simple-perl/debian/changelog?rev=48938&op=diff
==============================================================================
--- trunk/libpod-simple-perl/debian/changelog (original)
+++ trunk/libpod-simple-perl/debian/changelog Fri Dec 18 20:32:31 2009
@@ -1,6 +1,10 @@
 libpod-simple-perl (3.13-1) unstable; urgency=low
 
+  [ Jonathan Yu ]
   * New upstream release
+
+  [ gregor herrmann ]
+  * Add a patch to fix the POD and a test; add quilt framework.
 
  -- Jonathan Yu <jawnsy at cpan.org>  Thu, 17 Dec 2009 11:04:50 -0500
 

Modified: trunk/libpod-simple-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-simple-perl/debian/control?rev=48938&op=diff
==============================================================================
--- trunk/libpod-simple-perl/debian/control (original)
+++ trunk/libpod-simple-perl/debian/control Fri Dec 18 20:32:31 2009
@@ -1,9 +1,9 @@
 Source: libpod-simple-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7.0.50~)
+Build-Depends: debhelper (>= 7.0.50~), quilt (>= 0.46-7)
 Build-Depends-Indep: perl (>= 5.10), perl-doc,
- libpod-escapes-perl, libhtml-parser-perl
+ libpod-escapes-perl, libhtml-parser-perl, libtest-pod-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jay Bonci <jaybonci at debian.org>, Gunnar Wolf <gwolf at debian.org>,
  Damyan Ivanov <dmn at debian.org>, Jonathan Yu <jawnsy at cpan.org>

Added: trunk/libpod-simple-perl/debian/patches/pod.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-simple-perl/debian/patches/pod.patch?rev=48938&op=file
==============================================================================
--- trunk/libpod-simple-perl/debian/patches/pod.patch (added)
+++ trunk/libpod-simple-perl/debian/patches/pod.patch Fri Dec 18 20:32:31 2009
@@ -1,0 +1,54 @@
+Author: gregor herrmann <gregoa at debian.org>
+Description: L<$text|scheme:..> is no valid POD. fix it and add a pod test
+Forwarded: not-yet
+
+--- a/lib/Pod/Simple/HTML.pm
++++ b/lib/Pod/Simple/HTML.pm
+@@ -953,10 +953,10 @@
+ 
+ =head1 ACKNOWLEDGEMENTS
+ 
+-Thanks to L<Hurricane Electrict|http://he.net/> for permission to use its
+-L<Linux man pages online|http://man.he.net/> site for man page links.
++Thanks to Hurricane Electric L<http://he.net/> for permission to use its
++Linux man pages online L<http://man.he.net/> site for man page links.
+ 
+-Thanks to L<search.cpan.org|http://search.cpan.org/> for permission to use the
++Thanks to L<http://search.cpan.org/> for permission to use the
+ site for Perl module links.
+ 
+ =head1 AUTHOR
+--- a/lib/Pod/Simple/XHTML.pm
++++ b/lib/Pod/Simple/XHTML.pm
+@@ -571,7 +571,7 @@
+ 
+ Note that the first argument is required. The section number will be parsed
+ from it, and if it's missing will default to 1. The second argument is
+-currently ignored, as L<man.he.net|http://man.he.net> does not currently
++currently ignored, as L<http://man.he.net> does not currently
+ include linkable IDs or anchor names in its pages. Subclass to link to a
+ different man page HTTP server.
+ 
+@@ -689,10 +689,10 @@
+ 
+ =head1 ACKNOWLEDGEMENTS
+ 
+-Thanks to L<Hurricane Electrict|http://he.net/> for permission to use its
+-L<Linux man pages online|http://man.he.net/> site for man page links.
++Thanks to Hurricane Electric L<http://he.net/> for permission to use its
++Linux man pages online L<http://man.he.net/> site for man page links.
+ 
+-Thanks to L<search.cpan.org|http://search.cpan.org/> for permission to use the
++Thanks to L<http://search.cpan.org/> for permission to use the
+ site for Perl module links.
+ 
+ =head1 AUTHOR
+--- /dev/null
++++ b/t/99pod.t
+@@ -0,0 +1,6 @@
++use Test::More;
++
++eval "use Test::Pod 1.14";
++plan skip_all => 'Test::Pod 1.14 required' if $@;
++
++all_pod_files_ok();

Added: trunk/libpod-simple-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-simple-perl/debian/patches/series?rev=48938&op=file
==============================================================================
--- trunk/libpod-simple-perl/debian/patches/series (added)
+++ trunk/libpod-simple-perl/debian/patches/series Fri Dec 18 20:32:31 2009
@@ -1,0 +1,1 @@
+pod.patch

Modified: trunk/libpod-simple-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpod-simple-perl/debian/rules?rev=48938&op=diff
==============================================================================
--- trunk/libpod-simple-perl/debian/rules (original)
+++ trunk/libpod-simple-perl/debian/rules Fri Dec 18 20:32:31 2009
@@ -4,7 +4,7 @@
 TMP:= $(CURDIR)/debian/$(PACKAGE)
 
 %:
-	dh $@
+	dh --with quilt $@
 
 override_dh_auto_install:
 	dh_auto_install




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