r13762 - in /trunk/libio-capture-perl/debian: changelog compat control patches/ patches/fix_pod_whatis_entry.patch patches/series rules watch

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Mon Jan 28 06:18:51 UTC 2008


Author: rmayorga-guest
Date: Mon Jan 28 06:18:51 2008
New Revision: 13762

URL: http://svn.debian.org/wsvn/?sc=1&rev=13762
Log:
* Make the package ready for perl 5.10 update
* debian/control
  + Raise dephelper version to 6
  + set standards-version to 3.7.3 ( no changes needed )
  + Remove leading "," in Depends
  + Add quilt to B-D
* Improve debian/watch
* debian/rules
  + we use quilt now
  + remove OPTIMIZE, we are not using it
  + use $@ when touching -stamp files
  + move test suites from install to build target
  + Remove commented-out and un-ussed dh_ calls
  + Don't install the README file
* Add a patch to fix bad what-is entry in Pod files.

Added:
    trunk/libio-capture-perl/debian/patches/
    trunk/libio-capture-perl/debian/patches/fix_pod_whatis_entry.patch
    trunk/libio-capture-perl/debian/patches/series
Modified:
    trunk/libio-capture-perl/debian/changelog
    trunk/libio-capture-perl/debian/compat
    trunk/libio-capture-perl/debian/control
    trunk/libio-capture-perl/debian/rules
    trunk/libio-capture-perl/debian/watch

Modified: trunk/libio-capture-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libio-capture-perl/debian/changelog?rev=13762&op=diff
==============================================================================
--- trunk/libio-capture-perl/debian/changelog (original)
+++ trunk/libio-capture-perl/debian/changelog Mon Jan 28 06:18:51 2008
@@ -1,11 +1,29 @@
-libio-capture-perl (0.05-2) UNRELEASED; urgency=low
+libio-capture-perl (0.05-2) unstable; urgency=low
 
+  [ gregor herrmann ]
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza). Removed: XS-
     Vcs-Svn fields.
   * debian/rules: delete /usr/lib/perl5 only if it exists.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 09 Oct 2007 22:29:50 +0200
+  [ Rene Mayorga ]
+  * Make the package ready for perl 5.10 update
+  * debian/control
+    + Raise dephelper version to 6
+    + set standards-version to 3.7.3 ( no changes needed )
+    + Remove leading "," in Depends
+    + Add quilt to B-D
+  * Improve debian/watch
+  * debian/rules
+    + we use quilt now
+    + remove OPTIMIZE, we are not using it
+    + use $@ when touching -stamp files
+    + move test suites from install to build target
+    + Remove commented-out and un-ussed dh_ calls
+    + Don't install the README file
+  * Add a patch to fix bad what-is entry in Pod files.
+
+ -- Rene Mayorga <rmayorga at debian.org.sv>  Sun, 27 Jan 2008 23:56:31 -0600
 
 libio-capture-perl (0.05-1) unstable; urgency=low
 

Modified: trunk/libio-capture-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libio-capture-perl/debian/compat?rev=13762&op=diff
==============================================================================
--- trunk/libio-capture-perl/debian/compat (original)
+++ trunk/libio-capture-perl/debian/compat Mon Jan 28 06:18:51 2008
@@ -1,1 +1,1 @@
-4
+6

Modified: trunk/libio-capture-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libio-capture-perl/debian/control?rev=13762&op=diff
==============================================================================
--- trunk/libio-capture-perl/debian/control (original)
+++ trunk/libio-capture-perl/debian/control Mon Jan 28 06:18:51 2008
@@ -1,19 +1,19 @@
 Source: libio-capture-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 4.0.2)
+Build-Depends: debhelper (>= 6), quilt
 Build-Depends-Indep: perl (>= 5.8.0-7)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
-Standards-Version: 3.6.2
+Standards-Version: 3.7.3
 Homepage: http://search.cpan.org/dist/IO-Capture/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libio-capture-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-capture-perl/
 
 Package: libio-capture-perl
 Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}, 
-Description:  Abstract Base Class to build modules to capture output.
+Depends: ${perl:Depends}, ${misc:Depends} 
+Description: Abstract Base Class to build modules to capture output
  The IO::Capture Module defines an abstract base class that can be
  used to build modules that capture output being sent on a filehandle 
  such as STDOUT or STDERR.

Added: trunk/libio-capture-perl/debian/patches/fix_pod_whatis_entry.patch
URL: http://svn.debian.org/wsvn/trunk/libio-capture-perl/debian/patches/fix_pod_whatis_entry.patch?rev=13762&op=file
==============================================================================
--- trunk/libio-capture-perl/debian/patches/fix_pod_whatis_entry.patch (added)
+++ trunk/libio-capture-perl/debian/patches/fix_pod_whatis_entry.patch Mon Jan 28 06:18:51 2008
@@ -1,0 +1,25 @@
+Index: libio-capture-perl/lib/IO/Capture/Overview.pod
+===================================================================
+--- libio-capture-perl.orig/lib/IO/Capture/Overview.pod	2008-01-28 00:11:36.000000000 -0600
++++ libio-capture-perl/lib/IO/Capture/Overview.pod	2008-01-28 00:13:41.000000000 -0600
+@@ -1,6 +1,6 @@
+ =head1 NAME
+ 
+-Overview of C<IO::Capture> Module, and classes derived from it. 
++IO::Capture -- Overview of C<IO::Capture> Module, and classes derived from it.
+ 
+ =head1 DESCRIPTION
+ 
+Index: libio-capture-perl/lib/IO/Capture/Tie_STDx.pm
+===================================================================
+--- libio-capture-perl.orig/lib/IO/Capture/Tie_STDx.pm	2008-01-28 00:12:18.000000000 -0600
++++ libio-capture-perl/lib/IO/Capture/Tie_STDx.pm	2008-01-28 00:13:09.000000000 -0600
+@@ -28,7 +28,7 @@
+ 
+ =head1 NAME
+ 
+-IO::Capture::Tie_STDx;
++IO::Capture::Tie_STDx -- tie STDOUT or STDERR;
+ 
+ =head1 SYNOPSIS
+ 

Added: trunk/libio-capture-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libio-capture-perl/debian/patches/series?rev=13762&op=file
==============================================================================
--- trunk/libio-capture-perl/debian/patches/series (added)
+++ trunk/libio-capture-perl/debian/patches/series Mon Jan 28 06:18:51 2008
@@ -1,0 +1,1 @@
+fix_pod_whatis_entry.patch

Modified: trunk/libio-capture-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libio-capture-perl/debian/rules?rev=13762&op=diff
==============================================================================
--- trunk/libio-capture-perl/debian/rules (original)
+++ trunk/libio-capture-perl/debian/rules Mon Jan 28 06:18:51 2008
@@ -17,43 +17,36 @@
 PERL = /usr/bin/perl
 endif
 
+include /usr/share/quilt/quilt.make
+
 TMP     =$(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+	touch $@
 
-	# Add commands to compile the package here
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-Wall -O2 -g"
-
-	touch build-stamp
-
-clean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
-
-	# Add commands to clean up after the build process here
+	dh_clean build-stamp install-stamp
 	[ ! -f Makefile ] || $(MAKE) realclean
-
-	dh_clean build-stamp install-stamp
 
 install: build install-stamp
 install-stamp:
 	dh_testdir
 	dh_testroot
 	dh_clean -k
-
-	# Add commands to install the package into debian/$PACKAGE_NAME here
-	$(MAKE) test
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
 
 	# As this is a architecture independent package, we are not
 	# supposed to install stuff to /usr/lib. MakeMaker creates
 	# the dirs, we delete them from the deb:
 	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
-
-	touch install-stamp
+	touch $@
 
 binary-arch:
 # We have nothing to do by default.
@@ -61,14 +54,9 @@
 binary-indep: build install
 	dh_testdir
 	dh_testroot
-#	dh_installcron
-#	dh_installmenu
-#	dh_installexamples
-	dh_installdocs BUGS README
+	dh_installdocs BUGS
 	dh_installchangelogs Changes
 	dh_perl
-	dh_link
-	dh_strip
 	dh_compress
 	dh_fixperms
 	dh_installdeb

Modified: trunk/libio-capture-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libio-capture-perl/debian/watch?rev=13762&op=diff
==============================================================================
--- trunk/libio-capture-perl/debian/watch (original)
+++ trunk/libio-capture-perl/debian/watch Mon Jan 28 06:18:51 2008
@@ -1,4 +1,2 @@
-# format version number, currently 2; this line is compulsory!
-version=2
-http://www.cpan.org/modules/by-module/IO/IO-Capture-([\.\d]+).tar.gz
-
+version=3
+http://search.cpan.org/dist/IO-Capture/		.+/IO-Capture-v?(\d[\d._]*)\.(?:tar\.gz|tar\.bz2|tgz|\.zip)




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