From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- .../files/Module-Info-0.370.0-no-dot-inc.patch | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 dev-perl/Module-Info/files/Module-Info-0.370.0-no-dot-inc.patch (limited to 'dev-perl/Module-Info/files') 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 index 000000000000..39a70cc5ff81 --- /dev/null +++ b/dev-perl/Module-Info/files/Module-Info-0.370.0-no-dot-inc.patch @@ -0,0 +1,63 @@ +From 35d199fe62f7185ac03fec4cd1cb06aaf21f0172 Mon Sep 17 00:00:00 2001 +From: Kent Fredric +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 + -- cgit v1.2.3