r11427 - in /trunk/libtest-manifest-perl/debian: changelog compat control patches/ patches/01-fix_manpage_section.patch patches/series rules

hanska-guest at users.alioth.debian.org hanska-guest at users.alioth.debian.org
Wed Dec 19 14:40:34 UTC 2007


Author: hanska-guest
Date: Wed Dec 19 14:40:34 2007
New Revision: 11427

URL: http://svn.debian.org/wsvn/?sc=1&rev=11427
Log:
* debian/rules:
  - don't ignore the return value of $(MAKE) clean
  - updated to support quilt patch system
* debian/compat - updated to version 5
* debian/control:
  - moved debhelper to Build-Depends (required by clean target)
  - added quilt to Build-Depends
  - updated Standards-Version to 3.7.3
  - added myself to Uploaders
* debian/patches:
  - 01-fix_manpage_section.patch added - it fixes the manpage section
    from "3" to "3pm"

Added:
    trunk/libtest-manifest-perl/debian/patches/
    trunk/libtest-manifest-perl/debian/patches/01-fix_manpage_section.patch
    trunk/libtest-manifest-perl/debian/patches/series
Modified:
    trunk/libtest-manifest-perl/debian/changelog
    trunk/libtest-manifest-perl/debian/compat
    trunk/libtest-manifest-perl/debian/control
    trunk/libtest-manifest-perl/debian/rules

Modified: trunk/libtest-manifest-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libtest-manifest-perl/debian/changelog?rev=11427&op=diff
==============================================================================
--- trunk/libtest-manifest-perl/debian/changelog (original)
+++ trunk/libtest-manifest-perl/debian/changelog Wed Dec 19 14:40:34 2007
@@ -1,4 +1,4 @@
-libtest-manifest-perl (1.22-1) UNRELEASED; urgency=low
+libtest-manifest-perl (1.22-1) unstable; urgency=low
 
   [ gregor herrmann ]
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
@@ -8,6 +8,18 @@
 
   [ David Paleino ]
   * New upstream version
+  * debian/rules:
+    - don't ignore the return value of $(MAKE) clean
+    - updated to support quilt patch system
+  * debian/compat - updated to version 5
+  * debian/control:
+    - moved debhelper to Build-Depends (required by clean target)
+    - added quilt to Build-Depends
+    - updated Standards-Version to 3.7.3
+    - added myself to Uploaders
+  * debian/patches:
+    - 01-fix_manpage_section.patch added - it fixes the manpage section
+      from "3" to "3pm"
 
  -- David Paleino <d.paleino at gmail.com>  Wed, 19 Dec 2007 16:16:04 +0100
 

Modified: trunk/libtest-manifest-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libtest-manifest-perl/debian/compat?rev=11427&op=diff
==============================================================================
--- trunk/libtest-manifest-perl/debian/compat (original)
+++ trunk/libtest-manifest-perl/debian/compat Wed Dec 19 14:40:34 2007
@@ -1,1 +1,1 @@
-4
+5

Modified: trunk/libtest-manifest-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libtest-manifest-perl/debian/control?rev=11427&op=diff
==============================================================================
--- trunk/libtest-manifest-perl/debian/control (original)
+++ trunk/libtest-manifest-perl/debian/control Wed Dec 19 14:40:34 2007
@@ -2,12 +2,13 @@
 Section: perl
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Jay Bonci <jaybonci at debian.org>
-Standards-Version: 3.6.1.0
+Uploaders: Jay Bonci <jaybonci at debian.org>, David Paleino <d.paleino at gmail.com>
+Standards-Version: 3.7.3
 Homepage: http://search.cpan.org/dist/Test-Manifest/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-manifest-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-manifest-perl/
-Build-Depends-Indep: debhelper (>= 4.1), perl, libtest-simple-perl
+Build-Depends: debhelper (>= 5), quilt
+Build-Depends-Indep: perl, libtest-simple-perl
 
 Package: libtest-manifest-perl
 Section: perl

Added: trunk/libtest-manifest-perl/debian/patches/01-fix_manpage_section.patch
URL: http://svn.debian.org/wsvn/trunk/libtest-manifest-perl/debian/patches/01-fix_manpage_section.patch?rev=11427&op=file
==============================================================================
--- trunk/libtest-manifest-perl/debian/patches/01-fix_manpage_section.patch (added)
+++ trunk/libtest-manifest-perl/debian/patches/01-fix_manpage_section.patch Wed Dec 19 14:40:34 2007
@@ -1,0 +1,17 @@
+Index: libtest-manifest-perl/Makefile.PL
+===================================================================
+--- libtest-manifest-perl.orig/Makefile.PL	2007-12-19 16:34:20.000000000 +0100
++++ libtest-manifest-perl/Makefile.PL	2007-12-19 16:35:46.000000000 +0100
+@@ -20,10 +20,10 @@
+ 		{
+ 		'lib/Manifest.pm'  => '$(INST_LIBDIR)/Manifest.pm',
+ 		},
+-	  
++	
+ 	'MAN3PODS' =>
+ 		{
+-		'lib/Manifest.pm' => '$(INST_MAN3DIR)/Test::Manifest.3',
++		'lib/Manifest.pm' => '$(INST_MAN3DIR)/Test::Manifest.3pm',
+ 		},
+ 		
+ 	clean => { FILES => 'Test-Manifest-* t/test_manifest' },

Added: trunk/libtest-manifest-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libtest-manifest-perl/debian/patches/series?rev=11427&op=file
==============================================================================
--- trunk/libtest-manifest-perl/debian/patches/series (added)
+++ trunk/libtest-manifest-perl/debian/patches/series Wed Dec 19 14:40:34 2007
@@ -1,0 +1,1 @@
+01-fix_manpage_section.patch

Modified: trunk/libtest-manifest-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libtest-manifest-perl/debian/rules?rev=11427&op=diff
==============================================================================
--- trunk/libtest-manifest-perl/debian/rules (original)
+++ trunk/libtest-manifest-perl/debian/rules Wed Dec 19 14:40:34 2007
@@ -10,18 +10,19 @@
 
 PACKAGE=`pwd | sed -e "s/.*\/\\(.*\\)-.*/\\1/"`
 
+include /usr/share/quilt/quilt.make
 
-build:
+build: patch
 	dh_testdir
 	# Add here commands to compile the package.
 	perl Makefile.PL verbose INSTALLDIRS=vendor
-clean:
+
+clean: unpatch
 	dh_testdir
 	dh_testroot
 
-	-$(MAKE) clean
-	rm -f Makefile.old
-	dh_clean
+	[ ! -f Makefile ] || $(MAKE) clean
+	dh_clean Makefile.old
 
 install:
 	dh_testdir




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