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 162B9139694 for ; Wed, 14 Jun 2017 10:19:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33A8B21C054; Wed, 14 Jun 2017 10:19:01 +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 0DFCB21C054 for ; Wed, 14 Jun 2017 10:18:59 +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 DF3AD341938 for ; Wed, 14 Jun 2017 10:18:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00F6E7474 for ; Wed, 14 Jun 2017 10:18:57 +0000 (UTC) From: "Kent Fredric" 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" Message-ID: <1497435531.010099afc194fdec12c0dbfa2aad4b053f2f5f5e.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild X-VCS-Directories: dev-perl/Audio-FLAC-Header/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 010099afc194fdec12c0dbfa2aad4b053f2f5f5e X-VCS-Branch: master Date: Wed, 14 Jun 2017 10:18:57 +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: d5e725e9-8732-4aa1-b712-471dd503df55 X-Archives-Hash: 10aa93d0d977d7c33c306d747125d65e commit: 010099afc194fdec12c0dbfa2aad4b053f2f5f5e Author: Kent Fredric gentoo org> AuthorDate: Wed Jun 14 10:18:35 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Wed Jun 14 10:18:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=010099af dev-perl/Audio-FLAC-Header: Fix for '.' in @INC re bug #614662 Generic fix for Module::Install re Perl 5.26 Bug: https://bugs.gentoo.org/614662 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild index cc0beee9d94..b2afee1a19b 100644 --- a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild +++ b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.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=5 @@ -19,7 +19,9 @@ DEPEND="${RDEPEND}" SRC_TEST="do" # MI's fault -src_configure() { +src_prepare() { use test && perl_rm_files t/pod.t t/pod-coverage.t - perl-module_src_configure + 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 }