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 C5202139695 for ; Sun, 2 Jul 2017 15:23:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 398DB2340BB; Sun, 2 Jul 2017 15:23: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 160C12340BB for ; Sun, 2 Jul 2017 15:23:19 +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 56E6D341971 for ; Sun, 2 Jul 2017 15:23:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8999B749A for ; Sun, 2 Jul 2017 15:23:16 +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: <1499008988.fa63a808a895435116b197c6b61c27cc0bf3f08d.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Pod-Readme/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Pod-Readme/Pod-Readme-1.1.2.ebuild X-VCS-Directories: dev-perl/Pod-Readme/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: fa63a808a895435116b197c6b61c27cc0bf3f08d X-VCS-Branch: master Date: Sun, 2 Jul 2017 15:23:16 +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: e104802d-b8bd-480f-b0f0-980b0a7a862f X-Archives-Hash: 83dcebf89d29b06c04464487d2543119 commit: fa63a808a895435116b197c6b61c27cc0bf3f08d Author: Andreas K. Hüttel gentoo org> AuthorDate: Sun Jul 2 15:23:08 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sun Jul 2 15:23:08 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa63a808 dev-perl/Pod-Readme: Add build fix for Perl 5.26, bug 623074 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/Pod-Readme/Pod-Readme-1.1.2.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-perl/Pod-Readme/Pod-Readme-1.1.2.ebuild b/dev-perl/Pod-Readme/Pod-Readme-1.1.2.ebuild index dc3c3308d00..ed82024a641 100644 --- a/dev-perl/Pod-Readme/Pod-Readme-1.1.2.ebuild +++ b/dev-perl/Pod-Readme/Pod-Readme-1.1.2.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 @@ -52,3 +52,9 @@ DEPEND="${RDEPEND} virtual/perl-Test-Simple ) " + +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 +}