r32525 - in /trunk/libfile-touch-perl/debian: README.source changelog control patches/ patches/fix patches/series rules

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Fri Apr 3 03:06:12 UTC 2009


Author: ryan52-guest
Date: Fri Apr  3 03:06:08 2009
New Revision: 32525

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=32525
Log:
* fix the syntax
  - use quilt

Added:
    trunk/libfile-touch-perl/debian/README.source
    trunk/libfile-touch-perl/debian/patches/
    trunk/libfile-touch-perl/debian/patches/fix
    trunk/libfile-touch-perl/debian/patches/series
Modified:
    trunk/libfile-touch-perl/debian/changelog
    trunk/libfile-touch-perl/debian/control
    trunk/libfile-touch-perl/debian/rules

Added: trunk/libfile-touch-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-touch-perl/debian/README.source?rev=32525&op=file
==============================================================================
--- trunk/libfile-touch-perl/debian/README.source (added)
+++ trunk/libfile-touch-perl/debian/README.source Fri Apr  3 03:06:08 2009
@@ -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/libfile-touch-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-touch-perl/debian/changelog?rev=32525&op=diff
==============================================================================
--- trunk/libfile-touch-perl/debian/changelog (original)
+++ trunk/libfile-touch-perl/debian/changelog Fri Apr  3 03:06:08 2009
@@ -13,8 +13,10 @@
   * Debian Policy 3.8.1
   * move ._test.pl and ._Makefile.PL out of the way before building, and
     put them back after...they cause weird stuff to happen
+  * fix the syntax
+    - use quilt
 
- -- Ryan Niebur <ryanryan52 at gmail.com>  Wed, 01 Apr 2009 23:49:03 -0700
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Thu, 02 Apr 2009 20:04:47 -0700
 
 libfile-touch-perl (0.02-2) unstable; urgency=low
 

Modified: trunk/libfile-touch-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-touch-perl/debian/control?rev=32525&op=diff
==============================================================================
--- trunk/libfile-touch-perl/debian/control (original)
+++ trunk/libfile-touch-perl/debian/control Fri Apr  3 03:06:08 2009
@@ -11,7 +11,7 @@
 Homepage: http://search.cpan.org/dist/File-Touch/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfile-touch-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libfile-touch-perl/
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 7), quilt
 Build-Depends-Indep: perl (>> 5.8), perl-modules
 
 Package: libfile-touch-perl

Added: trunk/libfile-touch-perl/debian/patches/fix
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-touch-perl/debian/patches/fix?rev=32525&op=file
==============================================================================
--- trunk/libfile-touch-perl/debian/patches/fix (added)
+++ trunk/libfile-touch-perl/debian/patches/fix Fri Apr  3 03:06:08 2009
@@ -1,0 +1,22 @@
+fix the syntax
+
+--- a/Touch.pm
++++ b/Touch.pm
+@@ -14,7 +14,7 @@
+ 
+ my $SYSOPEN_MODE = O_WRONLY|O_CREAT;
+ eval {
+-    $SYSOPEN_MODE |= &{ $Fcntl::{'O_NONBLOCK'} };
++    $SYSOPEN_MODE |= ${ $Fcntl::{'O_NONBLOCK'} };
+ };
+ if($@) {
+     if($@ =~ /Your vendor has not defined/) {
+@@ -31,7 +31,7 @@
+ 
+ foreach my $Fcntl_sym (keys %Fcntl::){
+     if($Fcntl_sym eq 'O_NONBLOCK'){
+-	$SYSOPEN_MODE |= &{ $Fcntl::{'O_NONBLOCK'} };
++	$SYSOPEN_MODE |= ${ $Fcntl::{'O_NONBLOCK'} };
+ 	last;
+     }
+ }

Added: trunk/libfile-touch-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-touch-perl/debian/patches/series?rev=32525&op=file
==============================================================================
--- trunk/libfile-touch-perl/debian/patches/series (added)
+++ trunk/libfile-touch-perl/debian/patches/series Fri Apr  3 03:06:08 2009
@@ -1,0 +1,1 @@
+fix

Modified: trunk/libfile-touch-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-touch-perl/debian/rules?rev=32525&op=diff
==============================================================================
--- trunk/libfile-touch-perl/debian/rules (original)
+++ trunk/libfile-touch-perl/debian/rules Fri Apr  3 03:06:08 2009
@@ -1,13 +1,15 @@
 #!/usr/bin/make -f
 
+include /usr/share/quilt/quilt.make
+
 build: build-stamp
-build-stamp:
+build-stamp: $(QUILT_STAMPFN)
 	[ ! -f ._Makefile.PL ] || mv ._Makefile.PL debian
 	[ ! -f ._test.pl ] || mv ._test.pl debian
 	dh build
 	touch $@
 
-clean:
+clean: unpatch
 	dh $@
 	[ ! -f debian/._Makefile.PL ] || mv debian/._Makefile.PL ._Makefile.PL
 	[ ! -f debian/._test.pl ] || mv debian/._test.pl ._test.pl




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