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 5C7E5139696 for ; Sun, 2 Jul 2017 23:00:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 989FD23406B; Sun, 2 Jul 2017 23:00:11 +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 7825223406B for ; Sun, 2 Jul 2017 23:00:11 +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 3164E3416A1 for ; Sun, 2 Jul 2017 23:00:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D81374A0 for ; Sun, 2 Jul 2017 23:00:02 +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: <1499036068.505d160fde09e78f7aef4a5e63c808b29a8aa702.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-FindIndent/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Text-FindIndent/Text-FindIndent-0.110.0.ebuild X-VCS-Directories: dev-perl/Text-FindIndent/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 505d160fde09e78f7aef4a5e63c808b29a8aa702 X-VCS-Branch: master Date: Sun, 2 Jul 2017 23:00:02 +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: 2037bd80-4215-4b9f-81df-c9a4c1a13ec0 X-Archives-Hash: e660466d027453ee78bb9d943036eab2 commit: 505d160fde09e78f7aef4a5e63c808b29a8aa702 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sun Jul 2 22:54:28 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sun Jul 2 22:54:28 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=505d160f dev-perl/Text-FindIndent: Add build fix for Perl 5.26, bug 623138 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/Text-FindIndent/Text-FindIndent-0.110.0.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/dev-perl/Text-FindIndent/Text-FindIndent-0.110.0.ebuild b/dev-perl/Text-FindIndent/Text-FindIndent-0.110.0.ebuild index 6776d35a7a1..2c24f3f759d 100644 --- a/dev-perl/Text-FindIndent/Text-FindIndent-0.110.0.ebuild +++ b/dev-perl/Text-FindIndent/Text-FindIndent-0.110.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 @@ -16,4 +16,11 @@ IUSE="test" RDEPEND="" DEPEND="${RDEPEND} >=virtual/perl-ExtUtils-MakeMaker-6.360.0 - test? ( >=virtual/perl-Test-Simple-0.800.0 )" + test? ( >=virtual/perl-Test-Simple-0.800.0 ) +" + +src_prepare() { + sed -i -e 's/use inc::Module::Install::DSL/use lib q[.];\nuse inc::Module::Install::DSL/' Makefile.PL || + die "Can't patch Makefile.PL for 5.26 dot-in-inc" + perl-module_src_prepare +}