r17307 - in /trunk/libstring-escape-perl: Escape.pm debian/changelog debian/control debian/patches/ debian/patches/backslash.patch debian/patches/series debian/rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Wed Mar 12 19:51:04 UTC 2008


Author: gregoa-guest
Date: Wed Mar 12 19:51:03 2008
New Revision: 17307

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=17307
Log:
Add backslash.patch instead of adding the missing backslash directly to
  Escape.pm; add quilt framework.

Added:
    trunk/libstring-escape-perl/debian/patches/
    trunk/libstring-escape-perl/debian/patches/backslash.patch
    trunk/libstring-escape-perl/debian/patches/series
Modified:
    trunk/libstring-escape-perl/Escape.pm
    trunk/libstring-escape-perl/debian/changelog
    trunk/libstring-escape-perl/debian/control
    trunk/libstring-escape-perl/debian/rules

Modified: trunk/libstring-escape-perl/Escape.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-escape-perl/Escape.pm?rev=17307&op=diff
==============================================================================
--- trunk/libstring-escape-perl/Escape.pm (original)
+++ trunk/libstring-escape-perl/Escape.pm Wed Mar 12 19:51:03 2008
@@ -196,7 +196,7 @@
     } elsif ($text =~ s/\A\s+//m){
       push(@words, unprintable($word));
       $word = '';
-    } elsif ($text =~ s/\A\"//) {
+    } elsif ($text =~ s/\A"//) {
       carp "string2list found an unmatched quote at '$text'"; 
       return;
     } else {

Modified: trunk/libstring-escape-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-escape-perl/debian/changelog?rev=17307&op=diff
==============================================================================
--- trunk/libstring-escape-perl/debian/changelog (original)
+++ trunk/libstring-escape-perl/debian/changelog Wed Mar 12 19:51:03 2008
@@ -11,8 +11,10 @@
     - point to specific download location instead of CPAN at large
     - take copyright/license information from the module itself instead of
       from the outdated README
+  * Add backslash.patch instead of adding the missing backslash directly to
+    Escape.pm; add quilt framework.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Wed, 12 Mar 2008 20:43:58 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Wed, 12 Mar 2008 20:48:29 +0100
 
 libstring-escape-perl (2002.001-7) unstable; urgency=low
 

Modified: trunk/libstring-escape-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-escape-perl/debian/control?rev=17307&op=diff
==============================================================================
--- trunk/libstring-escape-perl/debian/control (original)
+++ trunk/libstring-escape-perl/debian/control Wed Mar 12 19:51:03 2008
@@ -3,7 +3,7 @@
 Uploaders: Gunnar Wolf <gwolf at debian.org>, gregor herrmann <gregor+debian at comodo.priv.at>, Carlo Segre <segre at debian.org>
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5.0.0)
+Build-Depends: debhelper (>= 5.0.0), quilt (>= 0.40)
 Build-Depends-Indep: perl (>> 5.8.1)
 Standards-Version: 3.7.3
 Homepage: http://search.cpan.org/dist/String-Escape/

Added: trunk/libstring-escape-perl/debian/patches/backslash.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-escape-perl/debian/patches/backslash.patch?rev=17307&op=file
==============================================================================
--- trunk/libstring-escape-perl/debian/patches/backslash.patch (added)
+++ trunk/libstring-escape-perl/debian/patches/backslash.patch Wed Mar 12 19:51:03 2008
@@ -1,0 +1,11 @@
+--- libstring-escape-perl.orig/Escape.pm
++++ libstring-escape-perl/Escape.pm
+@@ -196,7 +196,7 @@
+     } elsif ($text =~ s/\A\s+//m){
+       push(@words, unprintable($word));
+       $word = '';
+-    } elsif ($text =~ s/\A"//) {
++    } elsif ($text =~ s/\A\"//) {
+       carp "string2list found an unmatched quote at '$text'"; 
+       return;
+     } else {

Added: trunk/libstring-escape-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-escape-perl/debian/patches/series?rev=17307&op=file
==============================================================================
--- trunk/libstring-escape-perl/debian/patches/series (added)
+++ trunk/libstring-escape-perl/debian/patches/series Wed Mar 12 19:51:03 2008
@@ -1,0 +1,1 @@
+backslash.patch

Modified: trunk/libstring-escape-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstring-escape-perl/debian/rules?rev=17307&op=diff
==============================================================================
--- trunk/libstring-escape-perl/debian/rules (original)
+++ trunk/libstring-escape-perl/debian/rules Wed Mar 12 19:51:03 2008
@@ -6,6 +6,8 @@
 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
+
+include /usr/share/quilt/quilt.make
 
 # If set to a true value then MakeMaker's prompt function will
 # always return the default without waiting for user input.
@@ -20,7 +22,7 @@
 TMP     =$(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
 
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
@@ -29,7 +31,7 @@
 
 	touch $@
 
-clean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
 




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