r16304 - in /trunk/libconfig-apacheformat-perl: ApacheFormat.pm debian/changelog debian/patches/ debian/patches/apache_globs.patch debian/patches/series debian/rules

sgran at users.alioth.debian.org sgran at users.alioth.debian.org
Sun Mar 2 15:38:26 UTC 2008


Author: sgran
Date: Sun Mar  2 15:38:25 2008
New Revision: 16304

URL: http://svn.debian.org/wsvn/?sc=1&rev=16304
Log:
quiltify file glob patch

Added:
    trunk/libconfig-apacheformat-perl/debian/patches/
    trunk/libconfig-apacheformat-perl/debian/patches/apache_globs.patch
    trunk/libconfig-apacheformat-perl/debian/patches/series
Modified:
    trunk/libconfig-apacheformat-perl/ApacheFormat.pm
    trunk/libconfig-apacheformat-perl/debian/changelog
    trunk/libconfig-apacheformat-perl/debian/rules

Modified: trunk/libconfig-apacheformat-perl/ApacheFormat.pm
URL: http://svn.debian.org/wsvn/trunk/libconfig-apacheformat-perl/ApacheFormat.pm?rev=16304&op=diff
==============================================================================
--- trunk/libconfig-apacheformat-perl/ApacheFormat.pm (original)
+++ trunk/libconfig-apacheformat-perl/ApacheFormat.pm Sun Mar  2 15:38:25 2008
@@ -599,8 +599,6 @@
                                      "line $$line_num: $!");
                         @files = map { "$f/$_" } sort grep { -f "$f/$_" } readdir INCD;
                         closedir(INCD);
-                    } elsif ($f =~ /\*/) { # Apache file glob
-                        @files = glob $f;
                     } else {
                         @files = $f;
                     }

Modified: trunk/libconfig-apacheformat-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libconfig-apacheformat-perl/debian/changelog?rev=16304&op=diff
==============================================================================
--- trunk/libconfig-apacheformat-perl/debian/changelog (original)
+++ trunk/libconfig-apacheformat-perl/debian/changelog Sun Mar  2 15:38:25 2008
@@ -3,8 +3,9 @@
   * Add watch file
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza).
+  * quiltify file glob patch
 
- -- Stephen Gran <sgran at debian.org>  Sun, 02 Mar 2008 02:33:03 +0000
+ -- Stephen Gran <sgran at debian.org>  Sun, 02 Mar 2008 15:37:45 +0000
 
 libconfig-apacheformat-perl (1.2-3) unstable; urgency=low
 

Added: trunk/libconfig-apacheformat-perl/debian/patches/apache_globs.patch
URL: http://svn.debian.org/wsvn/trunk/libconfig-apacheformat-perl/debian/patches/apache_globs.patch?rev=16304&op=file
==============================================================================
--- trunk/libconfig-apacheformat-perl/debian/patches/apache_globs.patch (added)
+++ trunk/libconfig-apacheformat-perl/debian/patches/apache_globs.patch Sun Mar  2 15:38:25 2008
@@ -1,0 +1,13 @@
+Index: libconfig-apacheformat-perl/ApacheFormat.pm
+===================================================================
+--- libconfig-apacheformat-perl.orig/ApacheFormat.pm	2008-03-02 15:33:54.000000000 +0000
++++ libconfig-apacheformat-perl/ApacheFormat.pm	2008-03-02 15:34:31.000000000 +0000
+@@ -599,6 +599,8 @@
+                                      "line $$line_num: $!");
+                         @files = map { "$f/$_" } sort grep { -f "$f/$_" } readdir INCD;
+                         closedir(INCD);
++                    } elsif ($f =~ /\*/) { # Apache file glob
++                        @files = glob $f;
+                     } else {
+                         @files = $f;
+                     }

Added: trunk/libconfig-apacheformat-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libconfig-apacheformat-perl/debian/patches/series?rev=16304&op=file
==============================================================================
--- trunk/libconfig-apacheformat-perl/debian/patches/series (added)
+++ trunk/libconfig-apacheformat-perl/debian/patches/series Sun Mar  2 15:38:25 2008
@@ -1,0 +1,1 @@
+apache_globs.patch

Modified: trunk/libconfig-apacheformat-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libconfig-apacheformat-perl/debian/rules?rev=16304&op=diff
==============================================================================
--- trunk/libconfig-apacheformat-perl/debian/rules (original)
+++ trunk/libconfig-apacheformat-perl/debian/rules Sun Mar  2 15:38:25 2008
@@ -10,6 +10,7 @@
 # If set to a true value then MakeMaker's prompt function will
 # always return the default without waiting for user input.
 export PERL_MM_USE_DEFAULT=1
+include /usr/share/quilt/quilt.make
 
 PACKAGE=$(shell dh_listpackages)
 
@@ -20,7 +21,7 @@
 TMP     =$(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
 
 	# Add commands to compile the package here
@@ -30,7 +31,7 @@
 
 	touch $@
 
-clean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
 




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