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 08E09139694 for ; Tue, 13 Jun 2017 11:02:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0612FE0D09; Tue, 13 Jun 2017 11:02:19 +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 D9387E0D09 for ; Tue, 13 Jun 2017 11:02:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 65824341785 for ; Tue, 13 Jun 2017 11:02:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43E0073E0 for ; Tue, 13 Jun 2017 11:02:15 +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: <1497351717.a997edabf4b8dd69d90e4c27c1150da0c47c9ad9.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-ClassAPI/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Test-ClassAPI/Test-ClassAPI-1.60.0-r1.ebuild X-VCS-Directories: dev-perl/Test-ClassAPI/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: a997edabf4b8dd69d90e4c27c1150da0c47c9ad9 X-VCS-Branch: master Date: Tue, 13 Jun 2017 11:02:15 +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: 1dce196b-6f1c-44b6-be94-71a30204f850 X-Archives-Hash: 11db2a0129ecf8a3ebab514d601f95c1 commit: a997edabf4b8dd69d90e4c27c1150da0c47c9ad9 Author: Kent Fredric gentoo org> AuthorDate: Tue Jun 13 11:01:57 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Tue Jun 13 11:01:57 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a997edab dev-perl/Test-ClassAPI: Fix for '.' in @INC re bug #614638 Generic Module::Install 5.26 fix Bug: https://bugs.gentoo.org/614638 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/Test-ClassAPI/Test-ClassAPI-1.60.0-r1.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-perl/Test-ClassAPI/Test-ClassAPI-1.60.0-r1.ebuild b/dev-perl/Test-ClassAPI/Test-ClassAPI-1.60.0-r1.ebuild index 0912ff6a161..e8ce9a8d24f 100644 --- a/dev-perl/Test-ClassAPI/Test-ClassAPI-1.60.0-r1.ebuild +++ b/dev-perl/Test-ClassAPI/Test-ClassAPI-1.60.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 @@ -21,3 +21,9 @@ RDEPEND=">=virtual/perl-File-Spec-0.83 DEPEND="${RDEPEND}" 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 +}