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 5746F139694 for ; Fri, 30 Jun 2017 22:58:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E101E0CC7; Fri, 30 Jun 2017 22:58:16 +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 78327E0CC7 for ; Fri, 30 Jun 2017 22:58:16 +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 8278833BE19 for ; Fri, 30 Jun 2017 22:58:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 447D17487 for ; Fri, 30 Jun 2017 22:58:14 +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: <1498863486.89e2664610586824818450f0672e7a98d10e8559.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Module-Manifest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild X-VCS-Directories: dev-perl/Module-Manifest/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 89e2664610586824818450f0672e7a98d10e8559 X-VCS-Branch: master Date: Fri, 30 Jun 2017 22:58:14 +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: e781cec0-3896-412c-9149-079836386fd0 X-Archives-Hash: aab68e80f2b767a8d5ef1d2ad8c83a61 commit: 89e2664610586824818450f0672e7a98d10e8559 Author: Andreas K. Hüttel gentoo org> AuthorDate: Fri Jun 30 22:58:06 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Fri Jun 30 22:58:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e26646 dev-perl/Module-Manifest: Add build fix for Perl 5.26, bug 617112 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild b/dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild index 0ca3ebba59e..9551af0c4ac 100644 --- a/dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild +++ b/dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -MODULE_AUTHOR=ADAMK -MODULE_VERSION=1.08 +DIST_AUTHOR=ADAMK +DIST_VERSION=1.08 inherit perl-module DESCRIPTION="Parse and examine a Perl distribution MANIFEST file" @@ -25,4 +25,8 @@ DEPEND=" ) " -SRC_TEST=do +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 +}