From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-955238-garchives=archives.gentoo.org@lists.gentoo.org>
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 3AE38139694
	for <garchives@archives.gentoo.org>; Tue, 13 Jun 2017 08:42:49 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 467B5E0DFE;
	Tue, 13 Jun 2017 08:42:48 +0000 (UTC)
Received: from smtp.gentoo.org (dev.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 24150E0DFE
	for <gentoo-commits@lists.gentoo.org>; Tue, 13 Jun 2017 08:42:48 +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 28CA93416BA
	for <gentoo-commits@lists.gentoo.org>; Tue, 13 Jun 2017 08:42:47 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 77B837480
	for <gentoo-commits@lists.gentoo.org>; Tue, 13 Jun 2017 08:42:45 +0000 (UTC)
From: "Kent Fredric" <kentnl@gentoo.org>
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" <kentnl@gentoo.org>
Message-ID: <1497343348.947e2c4bcffd03b387f99de7f9708d225dc2d79f.kentnl@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-LeakTrace/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild
X-VCS-Directories: dev-perl/Test-LeakTrace/
X-VCS-Committer: kentnl
X-VCS-Committer-Name: Kent Fredric
X-VCS-Revision: 947e2c4bcffd03b387f99de7f9708d225dc2d79f
X-VCS-Branch: master
Date: Tue, 13 Jun 2017 08:42:45 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: c9c8ab93-7953-47dc-9497-25d1ae6d653e
X-Archives-Hash: 3861a9c591d3b7950bb7698cebe6d697

commit:     947e2c4bcffd03b387f99de7f9708d225dc2d79f
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 13 08:27:55 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Tue Jun 13 08:42:28 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=947e2c4b

dev-perl/Test-LeakTrace: Fix for '.' in @INC re bug #613872

Standard Module::Install fix for "." in @INC Removal in 5.26

Bug: https://bugs.gentoo.org/613872
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild b/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild
index 738bcb2f9a8..b61dbfbcf9f 100644
--- a/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild
+++ b/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild
@@ -14,3 +14,9 @@ KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd
 IUSE=""
 
 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
+}