[SCM] Debian packaging of libfilehandle-fmode-perl branch, master, updated. 41226425df6d5d34cc921d58a47103e3fd921bf7

Xavier Guimard x.guimard at free.fr
Wed Nov 7 05:40:31 UTC 2012


The following commit has been merged in the master branch:
commit 0a619c21d3c612973ea357f2f0a7d7f02539cf5f
Author: Xavier Guimard <x.guimard at free.fr>
Date:   Tue Nov 6 06:28:10 2012 +0100

    Patch now included in upstream

diff --git a/debian/changelog b/debian/changelog
index a26313f..823b05a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libfilehandle-fmode-perl (0.12-1) UNRELEASED; urgency=low
+libfilehandle-fmode-perl (0.13-1) UNRELEASED; urgency=low
 
   TODO:
   - since a patch has been applied for Hurd and not tested on other 
@@ -18,14 +18,13 @@ libfilehandle-fmode-perl (0.12-1) UNRELEASED; urgency=low
   * debian/control: update {versioned,alternative} (build) dependencies.
 
   [ Xavier Guimard ]
-  * New upstream release
+  * New upstream release (Closes: #681028)
   * Use debhelper >=9.20120312
   * Update copyright to format 1.0
   * Update debian/rules to new format
   * Convert source format to 3.0 quilt
-  * Include Hurd patch (Closes: #681028)
 
- -- Xavier Guimard <x.guimard at free.fr>  Sun, 04 Nov 2012 06:50:54 +0100
+ -- Xavier Guimard <x.guimard at free.fr>  Tue, 06 Nov 2012 06:27:19 +0100
 
 libfilehandle-fmode-perl (0.11-1) unstable; urgency=low
 
diff --git a/debian/patches/fmode_perl_hurd.patch b/debian/patches/fmode_perl_hurd.patch
deleted file mode 100644
index b379c68..0000000
--- a/debian/patches/fmode_perl_hurd.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-Description: Replace incompatible syscall for Hurd
-Author: Xavier Guimard <x.guimard at free.fr>
-Origin: http://bugs.debian.org/681028
-Bug-Debian: http://bugs.debian.org/681028
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=80607
-Last-Update: 2012-11-04
-
---- libfilehandle-fmode-perl-0.12.orig/Fmode.pm
-+++ libfilehandle-fmode-perl-0.12/Fmode.pm
-@@ -1,5 +1,5 @@
- package FileHandle::Fmode;
--use Fcntl qw(O_WRONLY O_RDWR O_APPEND F_GETFL);
-+use Fcntl qw(O_ACCMODE O_RDONLY O_WRONLY O_RDWR O_APPEND F_GETFL);
- use strict;
- 
- require Exporter;
-@@ -47,7 +47,7 @@ sub is_RO {
-       return 0;
-     }
-     my $fmode = fcntl($_[0], F_GETFL, my $slush = 0);
--    if(defined($fmode) && !($fmode & O_WRONLY) && !($fmode & O_RDWR)) {return 1}
-+    if(defined($fmode) && ($fmode & O_ACCMODE) == O_RDONLY) {return 1}
-     return 0;
- }
- 
-@@ -64,7 +64,7 @@ sub is_WO {
-       return 0;
-     }
-     my $fmode = fcntl($_[0], F_GETFL, my $slush = 0);
--    if($fmode & O_WRONLY) {return 1}
-+    if(defined($fmode) && ($fmode & O_ACCMODE) == O_WRONLY) {return 1}
-     return 0;
- }
- 
-@@ -91,7 +91,7 @@ sub is_RW {
-       return 0;
-     }
-     my $fmode = fcntl($_[0], F_GETFL, my $slush = 0);
--    if($fmode & O_RDWR) {return 1}
-+    if(defined($fmode) && ($fmode & O_ACCMODE) == O_RDWR) {return 1}
-     return 0;
- }
- 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index ea222e4..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-fmode_perl_hurd.patch

-- 
Debian packaging of libfilehandle-fmode-perl



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