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 70D96139694 for ; Fri, 30 Jun 2017 22:55:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AF9BE0BC7; Fri, 30 Jun 2017 22:55:54 +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 7991EE0BC7 for ; Fri, 30 Jun 2017 22:55:54 +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 66C383417A8 for ; Fri, 30 Jun 2017 22:55:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1C177487 for ; Fri, 30 Jun 2017 22:55:50 +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: <1498863343.5b5087afce003e7f8cbd542fd83492546abb18fc.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Mbox-MessageParser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild X-VCS-Directories: dev-perl/Mail-Mbox-MessageParser/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 5b5087afce003e7f8cbd542fd83492546abb18fc X-VCS-Branch: master Date: Fri, 30 Jun 2017 22:55:50 +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: 343d20a8-1afb-49fc-8cd5-f717c2b98327 X-Archives-Hash: e6d3cac6013396a371ee3c85f35c986f commit: 5b5087afce003e7f8cbd542fd83492546abb18fc Author: Andreas K. Hüttel gentoo org> AuthorDate: Fri Jun 30 22:55:43 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Fri Jun 30 22:55:43 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5087af dev-perl/Mail-Mbox-MessageParser: Add build fix for Perl 5.26, bug 617108 Package-Manager: Portage-2.3.6, Repoman-2.3.2 .../Mail-Mbox-MessageParser-1.510.500.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild b/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild index 33c6a385c9e..f541ca2fe60 100644 --- a/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild +++ b/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -MODULE_AUTHOR=DCOPPIT -MODULE_VERSION=1.5105 +DIST_AUTHOR=DCOPPIT +DIST_VERSION=1.5105 inherit perl-module DESCRIPTION="A fast and simple mbox folder reader" @@ -26,4 +26,8 @@ DEPEND="${RDEPEND} test? ( virtual/perl-Test-Simple ) " -SRC_TEST="do parallel" +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 +}