r21987 - in /trunk/libnews-nntpclient-perl: debian/changelog debian/control debian/patches/ debian/patches/hashbang.patch debian/patches/series debian/rules demos/NNTPFetchProgress.pm demos/NNTPHuge.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Jun 20 17:48:34 UTC 2008


Author: gregoa
Date: Fri Jun 20 17:48:34 2008
New Revision: 21987

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=21987
Log:
Split out the fixes for the hashbang in the example scripts into a patch;
add quilt framework.

Added:
    trunk/libnews-nntpclient-perl/debian/patches/
    trunk/libnews-nntpclient-perl/debian/patches/hashbang.patch
    trunk/libnews-nntpclient-perl/debian/patches/series
Modified:
    trunk/libnews-nntpclient-perl/debian/changelog
    trunk/libnews-nntpclient-perl/debian/control
    trunk/libnews-nntpclient-perl/debian/rules
    trunk/libnews-nntpclient-perl/demos/NNTPFetchProgress.pm
    trunk/libnews-nntpclient-perl/demos/NNTPHuge.pm

Modified: trunk/libnews-nntpclient-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnews-nntpclient-perl/debian/changelog?rev=21987&op=diff
==============================================================================
--- trunk/libnews-nntpclient-perl/debian/changelog (original)
+++ trunk/libnews-nntpclient-perl/debian/changelog Fri Jun 20 17:48:34 2008
@@ -1,7 +1,6 @@
 libnews-nntpclient-perl (0.37-8) UNRELEASED; urgency=low
 
   [ Damyan Ivanov ]
-  * NEEDS WORK - Maintainer, watch, etc
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza).
 
@@ -12,6 +11,8 @@
     <ghostbar38 at gmail.com>); Jose Luis Rivas <ghostbar38 at gmail.com>
     moved to Uploaders.
   * debian/watch: use dist-based URL.
+  * Split out the fixes for the hashbang in the example scripts into a patch;
+    add quilt framework.
 
  -- Damyan Ivanov <dmn at debian.org>  Fri, 07 Dec 2007 13:52:33 +0200
 

Modified: trunk/libnews-nntpclient-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnews-nntpclient-perl/debian/control?rev=21987&op=diff
==============================================================================
--- trunk/libnews-nntpclient-perl/debian/control (original)
+++ trunk/libnews-nntpclient-perl/debian/control Fri Jun 20 17:48:34 2008
@@ -4,7 +4,7 @@
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jose Luis Rivas <ghostbar38 at gmail.com>
 Build-Depends-Indep: perl (>= 5.6.0-16)
-Build-Depends: debhelper (>=5), cdbs
+Build-Depends: debhelper (>=5), cdbs, quilt (>= 0.40)
 Standards-Version: 3.7.2
 Homepage: http://search.cpan.org/dist/News-NNTPClient/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnews-nntpclient-perl/

Added: trunk/libnews-nntpclient-perl/debian/patches/hashbang.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnews-nntpclient-perl/debian/patches/hashbang.patch?rev=21987&op=file
==============================================================================
--- trunk/libnews-nntpclient-perl/debian/patches/hashbang.patch (added)
+++ trunk/libnews-nntpclient-perl/debian/patches/hashbang.patch Fri Jun 20 17:48:34 2008
@@ -1,0 +1,16 @@
+--- libnews-nntpclient-perl-0.37.orig/demos/NNTPFetchProgress.pm
++++ libnews-nntpclient-perl-0.37/demos/NNTPFetchProgress.pm
+@@ -1,4 +1,4 @@
+-#!/usr/local/bin/perl -w
++#!/usr/bin/perl -w
+ 
+ # Experimental code, written by Rodger Anderson <rodger at boi.hp.com>
+ 
+--- libnews-nntpclient-perl-0.37.orig/demos/NNTPHuge.pm
++++ libnews-nntpclient-perl-0.37/demos/NNTPHuge.pm
+@@ -1,3 +1,5 @@
++#!/usr/bin/perl -w
++
+ package News::NNTPHuge;
+ 
+ # I didn't write this.  Someone sent it to me and I've decided to

Added: trunk/libnews-nntpclient-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnews-nntpclient-perl/debian/patches/series?rev=21987&op=file
==============================================================================
--- trunk/libnews-nntpclient-perl/debian/patches/series (added)
+++ trunk/libnews-nntpclient-perl/debian/patches/series Fri Jun 20 17:48:34 2008
@@ -1,0 +1,1 @@
+hashbang.patch

Modified: trunk/libnews-nntpclient-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnews-nntpclient-perl/debian/rules?rev=21987&op=diff
==============================================================================
--- trunk/libnews-nntpclient-perl/debian/rules (original)
+++ trunk/libnews-nntpclient-perl/debian/rules Fri Jun 20 17:48:34 2008
@@ -2,6 +2,7 @@
 
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/perlmodule.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
 DEB_INSTALL_EXAMPLES_libnews-nntpclient-perl := demos
 install/libnews-nntpclient-perl::

Modified: trunk/libnews-nntpclient-perl/demos/NNTPFetchProgress.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnews-nntpclient-perl/demos/NNTPFetchProgress.pm?rev=21987&op=diff
==============================================================================
--- trunk/libnews-nntpclient-perl/demos/NNTPFetchProgress.pm (original)
+++ trunk/libnews-nntpclient-perl/demos/NNTPFetchProgress.pm Fri Jun 20 17:48:34 2008
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/local/bin/perl -w
 
 # Experimental code, written by Rodger Anderson <rodger at boi.hp.com>
 

Modified: trunk/libnews-nntpclient-perl/demos/NNTPHuge.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnews-nntpclient-perl/demos/NNTPHuge.pm?rev=21987&op=diff
==============================================================================
--- trunk/libnews-nntpclient-perl/demos/NNTPHuge.pm (original)
+++ trunk/libnews-nntpclient-perl/demos/NNTPHuge.pm Fri Jun 20 17:48:34 2008
@@ -1,5 +1,3 @@
-#!/usr/bin/perl -w
-
 package News::NNTPHuge;
 
 # I didn't write this.  Someone sent it to me and I've decided to




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