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 0B2FB139694 for ; Sat, 17 Jun 2017 14:40:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C189224012; Sat, 17 Jun 2017 14:40:49 +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 3BCF4224012 for ; Sat, 17 Jun 2017 14:40:49 +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 1DC223419BF for ; Sat, 17 Jun 2017 14:40:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5AD6747E for ; Sat, 17 Jun 2017 14:40:46 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1497710433.ab1505dfa2e0ce27bb7e8c603f68e6cfe4af09ae.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/PPI-HTML/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/PPI-HTML/PPI-HTML-1.80.0.ebuild X-VCS-Directories: dev-perl/PPI-HTML/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: ab1505dfa2e0ce27bb7e8c603f68e6cfe4af09ae X-VCS-Branch: master Date: Sat, 17 Jun 2017 14:40:46 +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: 7c1be7c3-7f5f-4af1-b743-e94267500d76 X-Archives-Hash: 5dd7ab2f0fd79a4312bd340215f789b5 commit: ab1505dfa2e0ce27bb7e8c603f68e6cfe4af09ae Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Jun 17 14:39:49 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sat Jun 17 14:40:33 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab1505df dev-perl/PPI-HTML: Add build fix for Perl 5.26, bug 615728 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/PPI-HTML/PPI-HTML-1.80.0.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-perl/PPI-HTML/PPI-HTML-1.80.0.ebuild b/dev-perl/PPI-HTML/PPI-HTML-1.80.0.ebuild index 18c567d772c..ba595c2b8f2 100644 --- a/dev-perl/PPI-HTML/PPI-HTML-1.80.0.ebuild +++ b/dev-perl/PPI-HTML/PPI-HTML-1.80.0.ebuild @@ -25,3 +25,9 @@ DEPEND="${RDEPEND} >=virtual/perl-Test-Simple-0.470.0 ) " + +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 +}