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 11703139694 for ; Tue, 20 Jun 2017 20:28:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2F0F23400B; Tue, 20 Jun 2017 20:28:45 +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 B6E6823400B for ; Tue, 20 Jun 2017 20:28:45 +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 83B3B341744 for ; Tue, 20 Jun 2017 20:28:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1DFBF746F for ; Tue, 20 Jun 2017 20:28:42 +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: <1497990515.cac5e097be2c44867ee1d4c2b38a0f6a22a9e141.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Encode-HanConvert/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Encode-HanConvert/Encode-HanConvert-0.350.0-r1.ebuild X-VCS-Directories: dev-perl/Encode-HanConvert/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: cac5e097be2c44867ee1d4c2b38a0f6a22a9e141 X-VCS-Branch: master Date: Tue, 20 Jun 2017 20:28:42 +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: 04abb82b-f3d3-4e10-93dc-fbe1ea7509a6 X-Archives-Hash: cb3a4630be596aac5982c57fb087ffad commit: cac5e097be2c44867ee1d4c2b38a0f6a22a9e141 Author: Andreas K. Hüttel gentoo org> AuthorDate: Tue Jun 20 20:28:23 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Tue Jun 20 20:28:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cac5e097 dev-perl/Encode-HanConvert: Fix build with Perl 5.26, bug 615828 Package-Manager: Portage-2.3.6, Repoman-2.3.2 .../Encode-HanConvert/Encode-HanConvert-0.350.0-r1.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dev-perl/Encode-HanConvert/Encode-HanConvert-0.350.0-r1.ebuild b/dev-perl/Encode-HanConvert/Encode-HanConvert-0.350.0-r1.ebuild index 154a5134d5c..35e98f3cdd4 100644 --- a/dev-perl/Encode-HanConvert/Encode-HanConvert-0.350.0-r1.ebuild +++ b/dev-perl/Encode-HanConvert/Encode-HanConvert-0.350.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=AUDREYT -MODULE_VERSION=0.35 +DIST_AUTHOR=AUDREYT +DIST_VERSION=0.35 inherit perl-module DESCRIPTION="Traditional and Simplified Chinese mappings" @@ -13,4 +13,8 @@ SLOT="0" KEYWORDS="amd64 x86" 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 +}