Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DH-GMP/
Date: Mon, 19 Jun 2017 19:43:25
Message-Id: 1497901384.45b86625f8500198b1196dae547ac69778e4f9a3.kentnl@gentoo
1 commit: 45b86625f8500198b1196dae547ac69778e4f9a3
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 19 19:43:04 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 19 19:43:04 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45b86625
7
8 dev-perl/Crypt-DH-GMP: Fix for '.' in @INC re bug #615108
9
10 Module::Install + 5.26 Fix
11
12 Bug: https://bugs.gentoo.org/615108
13 Package-Manager: Portage-2.3.6, Repoman-2.3.2
14
15 dev-perl/Crypt-DH-GMP/Crypt-DH-GMP-0.0.120.ebuild | 7 ++++++-
16 1 file changed, 6 insertions(+), 1 deletion(-)
17
18 diff --git a/dev-perl/Crypt-DH-GMP/Crypt-DH-GMP-0.0.120.ebuild b/dev-perl/Crypt-DH-GMP/Crypt-DH-GMP-0.0.120.ebuild
19 index e82e988e38d..efbe8cc0bce 100644
20 --- a/dev-perl/Crypt-DH-GMP/Crypt-DH-GMP-0.0.120.ebuild
21 +++ b/dev-perl/Crypt-DH-GMP/Crypt-DH-GMP-0.0.120.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2016 Gentoo Foundation
24 +# Copyright 1999-2017 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=6
28 @@ -27,3 +27,8 @@ DEPEND="${RDEPEND}
29 virtual/perl-Test-Simple
30 )
31 "
32 +src_prepare() {
33 + sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL ||
34 + die "Can't patch Makefile.PL for 5.26 dot-in-inc"
35 + perl-module_src_prepare
36 +}