commit: a702412846ef873c7c79d15ef741138610dcfab1
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 3 21:19:37 2017 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Jul 3 21:19:37 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7024128
dev-perl/Regexp-Common-net-CIDR: Add build fix for Perl 5.26, bug 623090
Package-Manager: Portage-2.3.6, Repoman-2.3.2
.../Regexp-Common-net-CIDR-0.20.0-r1.ebuild | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git
a/dev-perl/Regexp-Common-net-CIDR/Regexp-Common-net-CIDR-0.20.0-r1.ebuild
b/dev-perl/Regexp-Common-net-CIDR/Regexp-Common-net-CIDR-0.20.0-r1.ebuild
index 4ea495d3ba7..20eb605d01b 100644
--- a/dev-perl/Regexp-Common-net-CIDR/Regexp-Common-net-CIDR-0.20.0-r1.ebuild
+++ b/dev-perl/Regexp-Common-net-CIDR/Regexp-Common-net-CIDR-0.20.0-r1.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=RUZ
-MODULE_VERSION=0.02
+DIST_AUTHOR=RUZ
+DIST_VERSION=0.02
inherit perl-module
DESCRIPTION="Provides patterns for CIDR blocks"
@@ -20,4 +20,8 @@ RDEPEND="
DEPEND="${RDEPEND}
"
-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
+}