r20476 - in /trunk/libgetopt-argvfile-perl: debian/changelog debian/control debian/patches/ debian/patches/series debian/patches/t_resolvepath.patch debian/rules t/.resolvepathes.t t/resolvepathes.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Wed May 28 15:40:47 UTC 2008


Author: gregoa
Date: Wed May 28 15:40:47 2008
New Revision: 20476

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=20476
Log:
Split out changes to test script into t_resolvepath.patch; add quilt
framework.

Added:
    trunk/libgetopt-argvfile-perl/debian/patches/
    trunk/libgetopt-argvfile-perl/debian/patches/series
    trunk/libgetopt-argvfile-perl/debian/patches/t_resolvepath.patch
Modified:
    trunk/libgetopt-argvfile-perl/debian/changelog
    trunk/libgetopt-argvfile-perl/debian/control
    trunk/libgetopt-argvfile-perl/debian/rules
    trunk/libgetopt-argvfile-perl/t/.resolvepathes.t
    trunk/libgetopt-argvfile-perl/t/resolvepathes.t

Modified: trunk/libgetopt-argvfile-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgetopt-argvfile-perl/debian/changelog?rev=20476&op=diff
==============================================================================
--- trunk/libgetopt-argvfile-perl/debian/changelog (original)
+++ trunk/libgetopt-argvfile-perl/debian/changelog Wed May 28 15:40:47 2008
@@ -4,6 +4,8 @@
     field (source stanza); Homepage field (source stanza). Removed: XS-
     Vcs-Svn fields.
   * Refresh debian/rules, no functional changes.
+  * Split out changes to test script into t_resolvepath.patch; add quilt
+    framework.
 
  -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 09 Oct 2007 22:29:37 +0200
 

Modified: trunk/libgetopt-argvfile-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgetopt-argvfile-perl/debian/control?rev=20476&op=diff
==============================================================================
--- trunk/libgetopt-argvfile-perl/debian/control (original)
+++ trunk/libgetopt-argvfile-perl/debian/control Wed May 28 15:40:47 2008
@@ -7,7 +7,7 @@
 Homepage: http://search.cpan.org/dist/Getopt-ArgvFile/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libgetopt-argvfile-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libgetopt-argvfile-perl/
-Build-Depends: debhelper (>= 5.0)
+Build-Depends: debhelper (>= 5.0), quilt (>= 0.40)
 Build-Depends-Indep: perl, libtest-harness-perl, libtest-simple-perl
 
 Package: libgetopt-argvfile-perl

Added: trunk/libgetopt-argvfile-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgetopt-argvfile-perl/debian/patches/series?rev=20476&op=file
==============================================================================
--- trunk/libgetopt-argvfile-perl/debian/patches/series (added)
+++ trunk/libgetopt-argvfile-perl/debian/patches/series Wed May 28 15:40:47 2008
@@ -1,0 +1,1 @@
+t_resolvepath.patch

Added: trunk/libgetopt-argvfile-perl/debian/patches/t_resolvepath.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgetopt-argvfile-perl/debian/patches/t_resolvepath.patch?rev=20476&op=file
==============================================================================
--- trunk/libgetopt-argvfile-perl/debian/patches/t_resolvepath.patch (added)
+++ trunk/libgetopt-argvfile-perl/debian/patches/t_resolvepath.patch Wed May 28 15:40:47 2008
@@ -1,0 +1,26 @@
+Author: unknown
+Description: the paths during a build of the Debian package have different
+names ...
+
+--- libgetopt-argvfile-perl.orig/t/.resolvepathes.t
++++ libgetopt-argvfile-perl/t/.resolvepathes.t
+@@ -13,7 +13,7 @@
+ 
+ # back to first file (relative to *this* file!!)
+ -file1
+-.././../././Getopt-ArgvFile-1.10/t/file1
++.././../././libgetopt-argvfile-perl-1.10/t/file1
+ 
+ # now, for a nested option file (relative to *this* file!!)
+ @././././.resolvepathes2.t
+--- libgetopt-argvfile-perl.orig/t/resolvepathes.t
++++ libgetopt-argvfile-perl/t/resolvepathes.t
+@@ -27,7 +27,7 @@
+               './../file2',
+ 
+               '-file1',
+-              ".././../././Getopt-ArgvFile-$Getopt::ArgvFile::VERSION/t/file1",
++              ".././../././libgetopt-argvfile-perl-$Getopt::ArgvFile::VERSION/t/file1",
+              );
+ 
+ # perform first check

Modified: trunk/libgetopt-argvfile-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgetopt-argvfile-perl/debian/rules?rev=20476&op=diff
==============================================================================
--- trunk/libgetopt-argvfile-perl/debian/rules (original)
+++ trunk/libgetopt-argvfile-perl/debian/rules Wed May 28 15:40:47 2008
@@ -11,19 +11,21 @@
 # always return the default without waiting for user input.
 export PERL_MM_USE_DEFAULT=1
 
+include /usr/share/quilt/quilt.make
+
 PERL   ?= /usr/bin/perl
 PACKAGE = $(shell dh_listpackages)
 TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
 	$(MAKE)
 	$(MAKE) test
 	touch $@
 
-clean:
+clean: unpatch
 	dh_testdir
 	dh_testroot
 	dh_clean build-stamp install-stamp

Modified: trunk/libgetopt-argvfile-perl/t/.resolvepathes.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgetopt-argvfile-perl/t/.resolvepathes.t?rev=20476&op=diff
==============================================================================
--- trunk/libgetopt-argvfile-perl/t/.resolvepathes.t (original)
+++ trunk/libgetopt-argvfile-perl/t/.resolvepathes.t Wed May 28 15:40:47 2008
@@ -13,7 +13,7 @@
 
 # back to first file (relative to *this* file!!)
 -file1
-.././../././libgetopt-argvfile-perl-1.10/t/file1
+.././../././Getopt-ArgvFile-1.10/t/file1
 
 # now, for a nested option file (relative to *this* file!!)
 @././././.resolvepathes2.t

Modified: trunk/libgetopt-argvfile-perl/t/resolvepathes.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgetopt-argvfile-perl/t/resolvepathes.t?rev=20476&op=diff
==============================================================================
--- trunk/libgetopt-argvfile-perl/t/resolvepathes.t (original)
+++ trunk/libgetopt-argvfile-perl/t/resolvepathes.t Wed May 28 15:40:47 2008
@@ -27,7 +27,7 @@
               './../file2',
 
               '-file1',
-              ".././../././libgetopt-argvfile-perl-$Getopt::ArgvFile::VERSION/t/file1",
+              ".././../././Getopt-ArgvFile-$Getopt::ArgvFile::VERSION/t/file1",
              );
 
 # perform first check




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