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 771E2139694 for ; Sun, 2 Jul 2017 23:00:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3796274008; Sun, 2 Jul 2017 23:00:12 +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 C6322274008 for ; Sun, 2 Jul 2017 23:00:12 +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 0BD0C34167D for ; Sun, 2 Jul 2017 23:00:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7847774A2 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: <1499036377.e21ec60345e3c8158ca18c5d1f6ee30c3b1e5b3f.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-Atom/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/XML-Atom/XML-Atom-0.410.0-r1.ebuild X-VCS-Directories: dev-perl/XML-Atom/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: e21ec60345e3c8158ca18c5d1f6ee30c3b1e5b3f 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: aeb7b0dd-7223-43a9-9743-c36739d8d5fb X-Archives-Hash: 299a647289fcf8ca5c2152e9600c525f commit: e21ec60345e3c8158ca18c5d1f6ee30c3b1e5b3f Author: Andreas K. Hüttel gentoo org> AuthorDate: Sun Jul 2 22:59:37 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sun Jul 2 22:59:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21ec603 dev-perl/XML-Atom: Add build fix for Perl 5.26, bug 623182 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/XML-Atom/XML-Atom-0.410.0-r1.ebuild | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/dev-perl/XML-Atom/XML-Atom-0.410.0-r1.ebuild b/dev-perl/XML-Atom/XML-Atom-0.410.0-r1.ebuild index 6b4225c59eb..a3494235295 100644 --- a/dev-perl/XML-Atom/XML-Atom-0.410.0-r1.ebuild +++ b/dev-perl/XML-Atom/XML-Atom-0.410.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=MIYAGAWA -MODULE_VERSION=0.41 +DIST_AUTHOR=MIYAGAWA +DIST_VERSION=0.41 inherit perl-module DESCRIPTION="Atom feed and API implementation" @@ -13,7 +13,8 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="" -DEPEND="dev-perl/libwww-perl +RDEPEND=" + dev-perl/libwww-perl dev-perl/URI dev-perl/Class-Data-Inheritable >=dev-perl/XML-LibXML-1.69 @@ -23,7 +24,12 @@ DEPEND="dev-perl/libwww-perl dev-perl/Digest-SHA1 dev-perl/HTML-Parser dev-perl/LWP-Authen-Wsse - virtual/perl-MIME-Base64" -RDEPEND="${DEPEND}" + virtual/perl-MIME-Base64 +" +DEPEND="${RDEPEND}" -SRC_TEST=do +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 +}