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 0BE06139694 for ; Sun, 25 Jun 2017 09:21:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E586E0BDF; Sun, 25 Jun 2017 09:21:35 +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 09701E0BDF for ; Sun, 25 Jun 2017 09:21:34 +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 B4765341656 for ; Sun, 25 Jun 2017 09:21:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29AFF7466 for ; Sun, 25 Jun 2017 09:21:32 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1498382484.0176b707bc7a1d8699c19ebc4eab0c47e7224af5.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/SQL-Translator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/SQL-Translator/SQL-Translator-0.110.210.ebuild X-VCS-Directories: dev-perl/SQL-Translator/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 0176b707bc7a1d8699c19ebc4eab0c47e7224af5 X-VCS-Branch: master Date: Sun, 25 Jun 2017 09:21:32 +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: f6d19642-6e5d-4c09-9c85-03c8e4921d0c X-Archives-Hash: 55f99266d60f4b5e42c8f8485bbb472f commit: 0176b707bc7a1d8699c19ebc4eab0c47e7224af5 Author: Kent Fredric gentoo org> AuthorDate: Sun Jun 25 09:21:09 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Sun Jun 25 09:21:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0176b707 dev-perl/SQL-Translator: Fix for '.' in @INC re bug #615708 Generic Module::Install + 5.26 fix Bug: https://bugs.gentoo.org/615708 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-perl/SQL-Translator/SQL-Translator-0.110.210.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-perl/SQL-Translator/SQL-Translator-0.110.210.ebuild b/dev-perl/SQL-Translator/SQL-Translator-0.110.210.ebuild index 3a54882dc58..421617b611e 100644 --- a/dev-perl/SQL-Translator/SQL-Translator-0.110.210.ebuild +++ b/dev-perl/SQL-Translator/SQL-Translator-0.110.210.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -39,3 +39,9 @@ DEPEND="${RDEPEND} " SRC_TEST=do + +src_prepare() { + sed -i -e 's/use inc::Module::Install /use lib q[.];\nuse inc::Module::Install /' Makefile.PL || + die "Can't patch Makefile.PL for 5.26 dot-in-inc" + perl-module_src_prepare +}