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 D9E97139694 for ; Tue, 13 Jun 2017 10:58:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1B45E0CB8; Tue, 13 Jun 2017 10:57:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 AD215E0CB8 for ; Tue, 13 Jun 2017 10:57:58 +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 21563341984 for ; Tue, 13 Jun 2017 10:57:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84E1573E0 for ; Tue, 13 Jun 2017 10:57:55 +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: <1497351469.c2c4fa4337f6241c060f4b0dcad605888bf22eef.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/prefork/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/prefork/prefork-1.40.0-r1.ebuild X-VCS-Directories: dev-perl/prefork/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: c2c4fa4337f6241c060f4b0dcad605888bf22eef X-VCS-Branch: master Date: Tue, 13 Jun 2017 10:57:55 +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: 527198d9-9a9e-4431-ab26-fecb32d9a3fe X-Archives-Hash: a76c98a06f2e976c6e8fb2a4fd2b503e commit: c2c4fa4337f6241c060f4b0dcad605888bf22eef Author: Kent Fredric gentoo org> AuthorDate: Tue Jun 13 10:57:35 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Tue Jun 13 10:57:49 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c4fa43 dev-perl/prefork: Fix for '.' in @INC re bug #614446 Generic Module::Install fix Bug: https://bugs.gentoo.org/614446 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/prefork/prefork-1.40.0-r1.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-perl/prefork/prefork-1.40.0-r1.ebuild b/dev-perl/prefork/prefork-1.40.0-r1.ebuild index 409bb65af56..ff8ebcac2c6 100644 --- a/dev-perl/prefork/prefork-1.40.0-r1.ebuild +++ b/dev-perl/prefork/prefork-1.40.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -18,3 +18,9 @@ DEPEND=">=virtual/perl-File-Spec-0.80 RDEPEND="${DEPEND}" SRC_TEST="do" + +src_prepare() { + sed -i -e 's/use inc::Module::Install::DSL /use lib q[.]; use inc::Module::Install::DSL /' Makefile.PL || + die "Can't patch Makefile.PL for 5.26 dot-in-inc" + perl-module_src_prepare +}