[libperlio-gzip-perl] 01/02: Add patch from CPAN RT to handle %Config changes in perl 5.20.

gregor herrmann gregoa at debian.org
Sun Jun 22 15:47:29 UTC 2014


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libperlio-gzip-perl.

commit dc9400eba0f55cacbf93fa3ee20abfcb25a455c0
Author: gregor herrmann <gregoa at debian.org>
Date:   Sun Jun 22 17:45:25 2014 +0200

    Add patch from CPAN RT to handle %Config changes in perl 5.20.
    
    Closes: #750237
---
 debian/patches/PerlIO-gzip-0.18-RT92412.patch | 20 ++++++++++++++++++++
 debian/patches/series                         |  1 +
 2 files changed, 21 insertions(+)

diff --git a/debian/patches/PerlIO-gzip-0.18-RT92412.patch b/debian/patches/PerlIO-gzip-0.18-RT92412.patch
new file mode 100644
index 0000000..01aaa88
--- /dev/null
+++ b/debian/patches/PerlIO-gzip-0.18-RT92412.patch
@@ -0,0 +1,20 @@
+Description: adjust Config usage to Perl 5.20
+Origin: http://www.cpan.org/authors/id/S/SR/SREZIC/patches/PerlIO-gzip-0.18-RT92412.patch
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=92412
+Bugs-Debian: https://bugs.debian.org/750237
+Author: zefram [...] fysh.org
+Reviewed-by: gregor herrmann <gregoa at debian.org>
+Last-Update: 2014-06-22
+
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -4,7 +4,8 @@
+ use ExtUtils::MakeMaker;
+ use Config;
+ 
+-unless ($Config{useperlio} eq 'define' and $Config{usesfio} eq 'false') {
++unless ($Config{useperlio} eq 'define' and
++	(defined($Config{usesfio}) ? $Config{usesfio} : 'false') eq 'false') {
+   die <<BARF;
+ You need perl 5.8.0 or later, configured to use perlio (and not to use sfio)
+ BARF
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..b033ca3
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+PerlIO-gzip-0.18-RT92412.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libperlio-gzip-perl.git



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