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 E2BDF139694 for ; Sun, 2 Jul 2017 15:17:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0079E23400D; Sun, 2 Jul 2017 15:17:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 D2EF023400D for ; Sun, 2 Jul 2017 15:17:48 +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 E8241341974 for ; Sun, 2 Jul 2017 15:17:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CC1A7487 for ; Sun, 2 Jul 2017 15:17:46 +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: <1499008659.e1f4fc94d5bbf45bbccf7cab6023e4dc24694cfe.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/PerlIO-eol/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/PerlIO-eol/PerlIO-eol-0.140.0-r1.ebuild X-VCS-Directories: dev-perl/PerlIO-eol/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: e1f4fc94d5bbf45bbccf7cab6023e4dc24694cfe X-VCS-Branch: master Date: Sun, 2 Jul 2017 15:17:46 +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: e62625a4-ef90-4d94-9049-eabb8482d918 X-Archives-Hash: 3d598f56ad2a58a05f753d255b370a81 commit: e1f4fc94d5bbf45bbccf7cab6023e4dc24694cfe Author: Andreas K. Hüttel gentoo org> AuthorDate: Sun Jul 2 15:17:39 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Sun Jul 2 15:17:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1f4fc94 dev-perl/PerlIO-eol: Add build fix for Perl 5.26, bug 623070 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/PerlIO-eol/PerlIO-eol-0.140.0-r1.ebuild | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/dev-perl/PerlIO-eol/PerlIO-eol-0.140.0-r1.ebuild b/dev-perl/PerlIO-eol/PerlIO-eol-0.140.0-r1.ebuild index 1be9b665ec3..5a88bf3d9db 100644 --- a/dev-perl/PerlIO-eol/PerlIO-eol-0.140.0-r1.ebuild +++ b/dev-perl/PerlIO-eol/PerlIO-eol-0.140.0-r1.ebuild @@ -1,16 +1,20 @@ -# 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=AUDREYT -MODULE_VERSION=0.14 +DIST_AUTHOR=AUDREYT +DIST_VERSION=0.14 inherit perl-module -DESCRIPTION="PerlIO::eol - PerlIO layer for normalizing line endings" +DESCRIPTION="PerlIO layer for normalizing line endings" SLOT="0" KEYWORDS="amd64 ia64 ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" IUSE="" -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 +}