r35224 - in /trunk/libtest-file-perl/debian: README.source changelog control patches/ patches/fix-manpage-section patches/series rules

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Tue May 12 02:50:41 UTC 2009


Author: ryan52-guest
Date: Tue May 12 02:50:31 2009
New Revision: 35224

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=35224
Log:
* remove extra whitespace in debian/rules
* add quilt patching
  - add README.source
* patch Makefile.PL to use $(MAN3EXT) instead of 3 as the extension for
  the installed man page. This way .3pm is used on Debian.
* update standards version to 3.8.1
* add myself to Uploaders

Added:
    trunk/libtest-file-perl/debian/README.source
    trunk/libtest-file-perl/debian/patches/
    trunk/libtest-file-perl/debian/patches/fix-manpage-section
    trunk/libtest-file-perl/debian/patches/series
Modified:
    trunk/libtest-file-perl/debian/changelog
    trunk/libtest-file-perl/debian/control
    trunk/libtest-file-perl/debian/rules

Added: trunk/libtest-file-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-file-perl/debian/README.source?rev=35224&op=file
==============================================================================
--- trunk/libtest-file-perl/debian/README.source (added)
+++ trunk/libtest-file-perl/debian/README.source Tue May 12 02:50:31 2009
@@ -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/libtest-file-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-file-perl/debian/changelog?rev=35224&op=diff
==============================================================================
--- trunk/libtest-file-perl/debian/changelog (original)
+++ trunk/libtest-file-perl/debian/changelog Tue May 12 02:50:31 2009
@@ -1,13 +1,15 @@
 libtest-file-perl (1.25-1) UNRELEASED; urgency=low
 
-    TODO: 16:30 < dam> jeremiah_: can you bug brian to move File.pm from lib
-                       to lib/Test and drob the two keys? I believe that would
-                       simplify things a lot
-
-          Thing is, the module uses an awkward, hard-coding paths Makefile.PL,
-          which complicates insstallation in the right places.
-          With the above change, dh would take care of everything.
-
+  [ Jeremiah C. Foster ]
   * Initial Release. (Closes: #512774)
 
- -- Jeremiah C. Foster <jeremiah at jeremiahfoster.com>  Tue, 10 Feb 2009 17:09:18 +0100
+  [ Ryan Niebur ]
+  * remove extra whitespace in debian/rules
+  * add quilt patching
+    - add README.source
+  * patch Makefile.PL to use $(MAN3EXT) instead of 3 as the extension for
+    the installed man page. This way .3pm is used on Debian.
+  * update standards version to 3.8.1
+  * add myself to Uploaders
+
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Mon, 11 May 2009 19:46:51 -0700

Modified: trunk/libtest-file-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-file-perl/debian/control?rev=35224&op=diff
==============================================================================
--- trunk/libtest-file-perl/debian/control (original)
+++ trunk/libtest-file-perl/debian/control Tue May 12 02:50:31 2009
@@ -1,11 +1,11 @@
 Source: libtest-file-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 7), quilt
 Build-Depends-Indep: perl (>= 5.6.0-12), libtest-manifest-perl (>= 1.14), libtest-pod-perl, libtest-pod-coverage-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Jeremiah C. Foster <jeremiah at jeremiahfoster.com>
-Standards-Version: 3.8.0
+Uploaders: Jeremiah C. Foster <jeremiah at jeremiahfoster.com>, Ryan Niebur <ryanryan52 at gmail.com>
+Standards-Version: 3.8.1
 Homepage: http://search.cpan.org/dist/Test-File/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-file-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-file-perl/

Added: trunk/libtest-file-perl/debian/patches/fix-manpage-section
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-file-perl/debian/patches/fix-manpage-section?rev=35224&op=file
==============================================================================
--- trunk/libtest-file-perl/debian/patches/fix-manpage-section (added)
+++ trunk/libtest-file-perl/debian/patches/fix-manpage-section Tue May 12 02:50:31 2009
@@ -1,0 +1,17 @@
+install it as $(INST_MAN3DIR)/Test::File.3pm when building under
+Debian because that's the section that's used. Fixes this lintian
+warning:
+W: libtest-file-perl: manpage-section-mismatch usr/share/man/man3/Test::File.3.gz:127 3 != 3pm
+forwarded to https://rt.cpan.org/Ticket/Display.html?id=45977
+
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -26,7 +26,7 @@
+ 		},
+ 
+ 	'MAN3PODS'     => {
+-		'lib/File.pm' => '$(INST_MAN3DIR)/Test::File.3',
++		'lib/File.pm' => '$(INST_MAN3DIR)/Test::File.$(MAN3EXT)',
+ 		},
+ 
+ 	clean  => { FILES    => q|Test-File-* test_files| },

Added: trunk/libtest-file-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-file-perl/debian/patches/series?rev=35224&op=file
==============================================================================
--- trunk/libtest-file-perl/debian/patches/series (added)
+++ trunk/libtest-file-perl/debian/patches/series Tue May 12 02:50:31 2009
@@ -1,0 +1,1 @@
+fix-manpage-section

Modified: trunk/libtest-file-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-file-perl/debian/rules?rev=35224&op=diff
==============================================================================
--- trunk/libtest-file-perl/debian/rules (original)
+++ trunk/libtest-file-perl/debian/rules Tue May 12 02:50:31 2009
@@ -1,16 +1,18 @@
 #!/usr/bin/make -f
 
+include /usr/share/quilt/quilt.make
+
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh build
 	touch $@
 
-clean:
+clean: unpatch
 	dh $@
 
 install: install-stamp
 	find debian/libtest-file-perl -type f -name .packlist | xargs rm -f
-	
+
 install-stamp: build-stamp
 	dh install
 	touch $@




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