From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5478D139694 for ; Sun, 11 Jun 2017 02:26:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0ED10E0E77; Sun, 11 Jun 2017 02:26:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DD6C1E0E77 for ; Sun, 11 Jun 2017 02:26:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9558E3418A9 for ; Sun, 11 Jun 2017 02:26:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35E7F747B for ; Sun, 11 Jun 2017 02:25:59 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1497147868.bfa6bbd47356adb272d568720937424b2beb08fb.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-RSA/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Crypt-RSA/Crypt-RSA-1.990.0-r1.ebuild X-VCS-Directories: dev-perl/Crypt-RSA/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: bfa6bbd47356adb272d568720937424b2beb08fb X-VCS-Branch: master Date: Sun, 11 Jun 2017 02:25:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: eada02f5-190e-4d5d-a9aa-0911f22c7105 X-Archives-Hash: 9b50518e9f95895c4093520999c174f8 commit: bfa6bbd47356adb272d568720937424b2beb08fb Author: Kent Fredric gentoo org> AuthorDate: Sat Jun 10 21:50:49 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Sun Jun 11 02:24:28 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa6bbd4 dev-perl/Crypt-RSA: Fix breakage due to '.' in @INC removal bug #613626 This trivially restores '.' into @INC during compile phase. Bug: https://bugs.gentoo.org/613626 Bug: https://rt.cpan.org/Ticket/Display.html?id=120712 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/Crypt-RSA/Crypt-RSA-1.990.0-r1.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-perl/Crypt-RSA/Crypt-RSA-1.990.0-r1.ebuild b/dev-perl/Crypt-RSA/Crypt-RSA-1.990.0-r1.ebuild index 5645cc91a23..bf88d4a3dea 100644 --- a/dev-perl/Crypt-RSA/Crypt-RSA-1.990.0-r1.ebuild +++ b/dev-perl/Crypt-RSA/Crypt-RSA-1.990.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -29,3 +29,9 @@ DEPEND="dev-perl/Class-Loader RDEPEND="${DEPEND}" 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 +}