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 352F1139694 for ; Sun, 2 Jul 2017 15:15:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1996E0821; Sun, 2 Jul 2017 15:15:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 7C576E0821 for ; Sun, 2 Jul 2017 15:15:48 +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 B513533BE18 for ; Sun, 2 Jul 2017 15:15:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BB6B749E for ; Sun, 2 Jul 2017 15:15: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: <1499008536.570d51e641609149db7879b3cb7baab46225a02c.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Perl-Tags/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Perl-Tags/Perl-Tags-0.320.0.ebuild X-VCS-Directories: dev-perl/Perl-Tags/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 570d51e641609149db7879b3cb7baab46225a02c X-VCS-Branch: master Date: Sun, 2 Jul 2017 15:15: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: df0b53ef-e6e0-4150-a1ee-01b2b9a6e7e9 X-Archives-Hash: 9e99c458a81c0950e5957c00b630f2d3 commit: 570d51e641609149db7879b3cb7baab46225a02c Author: Andreas K. Hüttel gentoo org> AuthorDate: Sun Jul 2 15:15:36 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sun Jul 2 15:15:36 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=570d51e6 dev-perl/Perl-Tags: Add build fix for Perl 5.26, bug 623068 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/Perl-Tags/Perl-Tags-0.320.0.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-perl/Perl-Tags/Perl-Tags-0.320.0.ebuild b/dev-perl/Perl-Tags/Perl-Tags-0.320.0.ebuild index 1d61451f05a..2da9c6bbe83 100644 --- a/dev-perl/Perl-Tags/Perl-Tags-0.320.0.ebuild +++ b/dev-perl/Perl-Tags/Perl-Tags-0.320.0.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=6 @@ -46,3 +46,9 @@ DEPEND="${RDEPEND} DIST_TEST=skip # the tests work in principle, but they mess up the terminal badly + +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 +}