commit: 42a34c13b9a3956867de0ed16bf7c0a0a84a6e61
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 3 21:23:59 2017 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Jul 3 21:23:59 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42a34c13
dev-perl/Symbol-Global-Name: Add build fix for Perl 5.26, bug 623106
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-perl/Symbol-Global-Name/Symbol-Global-Name-0.50.0.ebuild | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/dev-perl/Symbol-Global-Name/Symbol-Global-Name-0.50.0.ebuild
b/dev-perl/Symbol-Global-Name/Symbol-Global-Name-0.50.0.ebuild
index d453911b6c1..94bf6565653 100644
--- a/dev-perl/Symbol-Global-Name/Symbol-Global-Name-0.50.0.ebuild
+++ b/dev-perl/Symbol-Global-Name/Symbol-Global-Name-0.50.0.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
-MODULE_AUTHOR=ALEXMV
-MODULE_VERSION=0.05
+DIST_AUTHOR=ALEXMV
+DIST_VERSION=0.05
inherit perl-module
DESCRIPTION="Finds name and type of a global variable"
@@ -19,4 +19,8 @@ DEPEND="${RDEPEND}
test? ( >=virtual/perl-Test-Simple-0.96 )
"
-SRC_TEST="do"
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install/use lib q[.]; use
inc::Module::Install/' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
+}