r11431 - in /trunk/libxml-generator-perl/debian: changelog control patches/ patches/01-fix_manpages_section.patch patches/series rules

hanska-guest at users.alioth.debian.org hanska-guest at users.alioth.debian.org
Wed Dec 19 15:04:55 UTC 2007


Author: hanska-guest
Date: Wed Dec 19 15:04:55 2007
New Revision: 11431

URL: http://svn.debian.org/wsvn/?sc=1&rev=11431
Log:
* debian/control:
  - bumped Standards-Version to latest 3.7.3
  - added myself to Uploaders
  - moved debhelper to Build-Depends, required by clean target
  - added quilt to Build-Depends
* debian/rules:
  - updated to support quilt patch system
  - do not ignore the return value of $(MAKE) clean
* debian/patches:
  - 01-fix_manpages_section.patch added to fix the manpages section
    from "3" to "3pm"

Added:
    trunk/libxml-generator-perl/debian/patches/
    trunk/libxml-generator-perl/debian/patches/01-fix_manpages_section.patch
    trunk/libxml-generator-perl/debian/patches/series
Modified:
    trunk/libxml-generator-perl/debian/changelog
    trunk/libxml-generator-perl/debian/control
    trunk/libxml-generator-perl/debian/rules

Modified: trunk/libxml-generator-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libxml-generator-perl/debian/changelog?rev=11431&op=diff
==============================================================================
--- trunk/libxml-generator-perl/debian/changelog (original)
+++ trunk/libxml-generator-perl/debian/changelog Wed Dec 19 15:04:55 2007
@@ -1,6 +1,17 @@
-libxml-generator-perl (1.01-1) UNRELEASED; urgency=low
+libxml-generator-perl (1.01-1) unstable; urgency=low
 
   * New upstream release
+  * debian/control:
+    - bumped Standards-Version to latest 3.7.3
+    - added myself to Uploaders
+    - moved debhelper to Build-Depends, required by clean target
+    - added quilt to Build-Depends
+  * debian/rules:
+    - updated to support quilt patch system
+    - do not ignore the return value of $(MAKE) clean
+  * debian/patches:
+    - 01-fix_manpages_section.patch added to fix the manpages section
+      from "3" to "3pm"
 
  -- David Paleino <d.paleino at gmail.com>  Wed, 19 Dec 2007 16:57:11 +0100
 

Modified: trunk/libxml-generator-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libxml-generator-perl/debian/control?rev=11431&op=diff
==============================================================================
--- trunk/libxml-generator-perl/debian/control (original)
+++ trunk/libxml-generator-perl/debian/control Wed Dec 19 15:04:55 2007
@@ -2,12 +2,14 @@
 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/XML-Generator/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libxml-generator-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libxml-generator-perl/
-Build-Depends-Indep: debhelper (>= 4.1), perl, libxml-dom-perl, libtie-ixhash-perl
+Build-Depends: debhelper (>= 5), quilt
+Build-Depends-Indep: perl, libxml-dom-perl, libtie-ixhash-perl
 
 Package: libxml-generator-perl
 Section: perl

Added: trunk/libxml-generator-perl/debian/patches/01-fix_manpages_section.patch
URL: http://svn.debian.org/wsvn/trunk/libxml-generator-perl/debian/patches/01-fix_manpages_section.patch?rev=11431&op=file
==============================================================================
--- trunk/libxml-generator-perl/debian/patches/01-fix_manpages_section.patch (added)
+++ trunk/libxml-generator-perl/debian/patches/01-fix_manpages_section.patch Wed Dec 19 15:04:55 2007
@@ -1,0 +1,14 @@
+Index: XML-Generator-1.01/Makefile.PL
+===================================================================
+--- XML-Generator-1.01.orig/Makefile.PL	2007-12-19 16:01:23.000000000 +0100
++++ XML-Generator-1.01/Makefile.PL	2007-12-19 16:01:30.000000000 +0100
+@@ -5,7 +5,7 @@
+     'NAME'	=> 'XML::Generator',
+     'PM'	=> { 'Generator.pm' => '$(INST_LIBDIR)/Generator.pm',
+ 		     'DOM.pm'       => '$(INST_LIBDIR)/Generator/DOM.pm' },
+-    'MAN3PODS'  => { 'Generator.pm' => '$(INST_MAN3DIR)/XML::Generator.3',
+-		     'DOM.pm'       => '$(INST_MAN3DIR)/XML::Generator::DOM.3' },
++    'MAN3PODS'  => { 'Generator.pm' => '$(INST_MAN3DIR)/XML::Generator.3pm',
++		     'DOM.pm'       => '$(INST_MAN3DIR)/XML::Generator::DOM.3pm' },
+     'VERSION_FROM' => 'Generator.pm', # finds $VERSION
+ );

Added: trunk/libxml-generator-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libxml-generator-perl/debian/patches/series?rev=11431&op=file
==============================================================================
--- trunk/libxml-generator-perl/debian/patches/series (added)
+++ trunk/libxml-generator-perl/debian/patches/series Wed Dec 19 15:04:55 2007
@@ -1,0 +1,1 @@
+01-fix_manpages_section.patch

Modified: trunk/libxml-generator-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libxml-generator-perl/debian/rules?rev=11431&op=diff
==============================================================================
--- trunk/libxml-generator-perl/debian/rules (original)
+++ trunk/libxml-generator-perl/debian/rules Wed Dec 19 15:04:55 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