commit: 5b5087afce003e7f8cbd542fd83492546abb18fc
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 30 22:55:43 2017 +0000
Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Jun 30 22:55:43 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5087af
dev-perl/Mail-Mbox-MessageParser: Add build fix for Perl 5.26, bug 617108
Package-Manager: Portage-2.3.6, Repoman-2.3.2
.../Mail-Mbox-MessageParser-1.510.500.ebuild | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git
a/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
b/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
index 33c6a385c9e..f541ca2fe60 100644
--- a/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
+++ b/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
-MODULE_AUTHOR=DCOPPIT
-MODULE_VERSION=1.5105
+DIST_AUTHOR=DCOPPIT
+DIST_VERSION=1.5105
inherit perl-module
DESCRIPTION="A fast and simple mbox folder reader"
@@ -26,4 +26,8 @@ DEPEND="${RDEPEND}
test? ( virtual/perl-Test-Simple )
"
-SRC_TEST="do parallel"
+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
+}