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 CDB33139694 for ; Sun, 26 Mar 2017 18:18:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E57F621C028; Sun, 26 Mar 2017 18:18:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C127321C028 for ; Sun, 26 Mar 2017 18:18:42 +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 ECED834166A for ; Sun, 26 Mar 2017 18:18:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9456F70B7 for ; Sun, 26 Mar 2017 18:18:40 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1490552304.dab3c9720d8e4a8ed09e9f32af138a8e849a7f3d.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/lwp/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/lwp/lwp-2.6-r1.ebuild sys-libs/lwp/lwp-2.6.ebuild X-VCS-Directories: sys-libs/lwp/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: dab3c9720d8e4a8ed09e9f32af138a8e849a7f3d X-VCS-Branch: master Date: Sun, 26 Mar 2017 18:18:40 +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: 9e2267af-d5c8-4663-9711-248850b175b7 X-Archives-Hash: aa1bdcfa1ccb38992064df69bd373c2c commit: dab3c9720d8e4a8ed09e9f32af138a8e849a7f3d Author: Michael Orlitzky gentoo org> AuthorDate: Sun Mar 26 18:18:24 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sun Mar 26 18:18:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dab3c972 sys-libs/lwp: new EAPI=6 revision to avoid inheriting eutils. Package-Manager: Portage-2.3.3, Repoman-2.3.1 sys-libs/lwp/{lwp-2.6.ebuild => lwp-2.6-r1.ebuild} | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/sys-libs/lwp/lwp-2.6.ebuild b/sys-libs/lwp/lwp-2.6-r1.ebuild similarity index 63% rename from sys-libs/lwp/lwp-2.6.ebuild rename to sys-libs/lwp/lwp-2.6-r1.ebuild index 6919e7e9b60..f4206728130 100644 --- a/sys-libs/lwp/lwp-2.6.ebuild +++ b/sys-libs/lwp/lwp-2.6-r1.ebuild @@ -1,11 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="4" +EAPI=6 -inherit eutils - -DESCRIPTION="Light weight process library (used by Coda). This is NOT libwww-perl" +DESCRIPTION="Light-weight process library (used by Coda)" HOMEPAGE="http://www.coda.cs.cmu.edu/" SRC_URI="http://www.coda.cs.cmu.edu/pub/lwp/src/${P}.tar.gz" @@ -15,6 +13,7 @@ KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="" src_prepare() { + eapply_user # Was introduced for bug #34542, not sure if still needed - use amd64 && epatch "${FILESDIR}"/lwp-2.0-amd64.patch + use amd64 && eapply "${FILESDIR}"/lwp-2.0-amd64.patch }