r51274 - in /trunk/libscope-upper-perl: debian/README.source debian/changelog debian/control debian/patches/ debian/patches/fix-pod-spelling.patch debian/patches/series debian/rules lib/Scope/Upper.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Jan 20 02:06:54 UTC 2010


Author: jawnsy-guest
Date: Wed Jan 20 02:06:41 2010
New Revision: 51274

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=51274
Log:
Add an override to fix shebangs in examples

Added:
    trunk/libscope-upper-perl/debian/README.source
    trunk/libscope-upper-perl/debian/patches/
    trunk/libscope-upper-perl/debian/patches/fix-pod-spelling.patch
    trunk/libscope-upper-perl/debian/patches/series
Modified:
    trunk/libscope-upper-perl/debian/changelog
    trunk/libscope-upper-perl/debian/control
    trunk/libscope-upper-perl/debian/rules
    trunk/libscope-upper-perl/lib/Scope/Upper.pm

Added: trunk/libscope-upper-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscope-upper-perl/debian/README.source?rev=51274&op=file
==============================================================================
--- trunk/libscope-upper-perl/debian/README.source (added)
+++ trunk/libscope-upper-perl/debian/README.source Wed Jan 20 02:06:41 2010
@@ -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/libscope-upper-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscope-upper-perl/debian/changelog?rev=51274&op=diff
==============================================================================
--- trunk/libscope-upper-perl/debian/changelog (original)
+++ trunk/libscope-upper-perl/debian/changelog Wed Jan 20 02:06:41 2010
@@ -6,6 +6,7 @@
   * Refresh copyright to DEP5 format
   * Standards-Version 3.8.3 (no changes)
   * Use new short debhelper rules format
+  * Add an override to fix shebangs in examples
 
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
@@ -18,7 +19,7 @@
   [ Ryan Niebur ]
   * Update jawnsy's email address
 
- -- Jonathan Yu <jawnsy at cpan.org>  Tue, 19 Jan 2010 21:08:07 -0500
+ -- Jonathan Yu <jawnsy at cpan.org>  Tue, 19 Jan 2010 21:15:00 -0500
 
 libscope-upper-perl (0.08-1) unstable; urgency=low
 

Modified: trunk/libscope-upper-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscope-upper-perl/debian/control?rev=51274&op=diff
==============================================================================
--- trunk/libscope-upper-perl/debian/control (original)
+++ trunk/libscope-upper-perl/debian/control Wed Jan 20 02:06:41 2010
@@ -1,8 +1,8 @@
 Source: libscope-upper-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7), perl, libtest-pod-perl,
- libtest-pod-coverage-perl
+Build-Depends: debhelper (>= 7.0.50), quilt (>= 0.46-7), perl,
+ libtest-pod-perl, libtest-pod-coverage-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: gregor herrmann <gregoa at debian.org>, Jonathan Yu <jawnsy at cpan.org>
 Standards-Version: 3.8.3

Added: trunk/libscope-upper-perl/debian/patches/fix-pod-spelling.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscope-upper-perl/debian/patches/fix-pod-spelling.patch?rev=51274&op=file
==============================================================================
--- trunk/libscope-upper-perl/debian/patches/fix-pod-spelling.patch (added)
+++ trunk/libscope-upper-perl/debian/patches/fix-pod-spelling.patch Wed Jan 20 02:06:41 2010
@@ -1,0 +1,15 @@
+Description: fix typos
+Author: Jonathan Yu <jawnsy at cpan.org>
+Origin: vendor
+Forwarded: no
+--- a/lib/Scope/Upper.pm
++++ b/lib/Scope/Upper.pm
+@@ -160,7 +160,7 @@
+ 
+ =head2 C<localize_delete $what, $key, $context>
+ 
+-Similiar to L</localize>, but for deleting variables or array/hash elements.
++Similar to L</localize>, but for deleting variables or array/hash elements.
+ C<$what> can be:
+ 
+ =over 4

Added: trunk/libscope-upper-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscope-upper-perl/debian/patches/series?rev=51274&op=file
==============================================================================
--- trunk/libscope-upper-perl/debian/patches/series (added)
+++ trunk/libscope-upper-perl/debian/patches/series Wed Jan 20 02:06:41 2010
@@ -1,0 +1,1 @@
+fix-pod-spelling.patch

Modified: trunk/libscope-upper-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscope-upper-perl/debian/rules?rev=51274&op=diff
==============================================================================
--- trunk/libscope-upper-perl/debian/rules (original)
+++ trunk/libscope-upper-perl/debian/rules Wed Jan 20 02:06:41 2010
@@ -1,4 +1,12 @@
 #!/usr/bin/make -f
 
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
+
 %:
-	dh $@
+	dh --with quilt $@
+
+override_dh_installexamples:
+	dh_installexamples
+	sed -i '1s|^#!perl|#!/usr/bin/perl|' $(TMP)/usr/share/doc/$(PACKAGE)/examples/*
+

Modified: trunk/libscope-upper-perl/lib/Scope/Upper.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscope-upper-perl/lib/Scope/Upper.pm?rev=51274&op=diff
==============================================================================
--- trunk/libscope-upper-perl/lib/Scope/Upper.pm (original)
+++ trunk/libscope-upper-perl/lib/Scope/Upper.pm Wed Jan 20 02:06:41 2010
@@ -160,7 +160,7 @@
 
 =head2 C<localize_delete $what, $key, $context>
 
-Similiar to L</localize>, but for deleting variables or array/hash elements.
+Similar to L</localize>, but for deleting variables or array/hash elements.
 C<$what> can be:
 
 =over 4




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