dev-perl/Module-Info: Fix '.' in @INC test failures, bug #617110
authorKent Fredric <kentnl@gentoo.org>
Mon, 30 Oct 2017 07:50:33 +0000 (20:50 +1300)
committerKent Fredric <kentnl@gentoo.org>
Mon, 30 Oct 2017 07:50:57 +0000 (20:50 +1300)
Bug: https://bugs.gentoo.org/617110
Package-Manager: Portage-2.3.8, Repoman-2.3.3

dev-perl/Module-Info/Module-Info-0.370.0-r1.ebuild
dev-perl/Module-Info/files/Module-Info-0.370.0-no-dot-inc.patch [new file with mode: 0644]

index f2f6294b5a9fcdfb8f4b3dab4fcaf09c140a430a..2db9e5994a95005c1d8b1a6a603d481b496cad61 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -21,6 +21,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
        virtual/perl-ExtUtils-MakeMaker
 "
+PATCHES=("${FILESDIR}/${PN}-0.370.0-no-dot-inc.patch")
 src_test() {
        perl_rm_files "t/zz_pod.t" "t/zy_pod_coverage.t"
        perl-module_src_test
diff --git a/dev-perl/Module-Info/files/Module-Info-0.370.0-no-dot-inc.patch b/dev-perl/Module-Info/files/Module-Info-0.370.0-no-dot-inc.patch
new file mode 100644 (file)
index 0000000..39a70cc
--- /dev/null
@@ -0,0 +1,63 @@
+From 35d199fe62f7185ac03fec4cd1cb06aaf21f0172 Mon Sep 17 00:00:00 2001
+From: Kent Fredric <kentnl@gentoo.org>
+Date: Mon, 30 Oct 2017 20:07:40 +1300
+Subject: Fix test failures without '.' in @INC on Perl 5.26
+
+Where: PERL_USE_UNSAFE_INC=0
+
+Bug: https://bugs.gentoo.org/617110
+Bug: https://rt.cpan.org/Ticket/Display.html?id=121035
+Bug: https://github.com/neilb/Module-Info/pull/3
+---
+ t/Module-Info.t | 4 ++--
+ t/lib/Foo.pm    | 8 ++++----
+ 2 files changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/t/Module-Info.t b/t/Module-Info.t
+index bb62479..5c59214 100644
+--- a/t/Module-Info.t
++++ b/t/Module-Info.t
+@@ -203,8 +203,8 @@ SKIP: {
+     my @mods = $module->modules_used;
+     is( @mods, 8,           'modules_used' );
+     is_deeply( [sort @mods],
+-               [sort qw(strict vars Carp Exporter t/lib/Bar.pm t/lib/NotHere.pm
+-                        t/lib/Foo.pm lib)] );
++               [sort qw(strict vars Carp Exporter ./t/lib/Bar.pm ./t/lib/NotHere.pm
++                        ./t/lib/Foo.pm lib)] );
+     $module->name('Foo');
+     my @isa = $module->superclasses;
+diff --git a/t/lib/Foo.pm b/t/lib/Foo.pm
+index 956a79f..2602df2 100644
+--- a/t/lib/Foo.pm
++++ b/t/lib/Foo.pm
+@@ -2,7 +2,7 @@ package Foo;
+ use strict;
+ require Exporter;
+-require "t/lib/Foo.pm";
++require "./t/lib/Foo.pm";
+ use vars qw(@ISA $VERSION);
+ $VERSION = 7.254;
+@@ -56,13 +56,13 @@ sub croak {
+     return sub {
+         main::wibble('call insde anon sub inside sub');
+-        require 't/lib/NotHere.pm';
++        require './t/lib/NotHere.pm';
+     }
+ }
+ BEGIN {
+-    require 't/lib/Bar.pm';
++    require './t/lib/Bar.pm';
+ }
+-my $mod = 't/lib/Bar.pm';
++my $mod = './t/lib/Bar.pm';
+ require $mod;
+-- 
+2.14.3
+