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 47E8713933E for ; Thu, 8 Jul 2021 09:44:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69EAFE0AA0; Thu, 8 Jul 2021 09:44:22 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4EED0E0AA0 for ; Thu, 8 Jul 2021 09:44:22 +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 6D2A1342A6A for ; Thu, 8 Jul 2021 09:44:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20A522B for ; Thu, 8 Jul 2021 09:44:20 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1625737378.eb5e3f913f965587150b9604c908f564ae2848e0.ionen@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.8.ebuild X-VCS-Directories: sys-libs/lwp/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: eb5e3f913f965587150b9604c908f564ae2848e0 X-VCS-Branch: master Date: Thu, 8 Jul 2021 09:44:20 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6207a75a-2751-4f64-8827-95e58b019085 X-Archives-Hash: 142cf19c8deffd0dc94f26e2cb4b0874 commit: eb5e3f913f965587150b9604c908f564ae2848e0 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Jun 21 15:59:09 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Jul 8 09:42:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb5e3f91 sys-libs/lwp: EAPI7, ltprune-- Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/21360 Signed-off-by: Ionen Wolkens gentoo.org> sys-libs/lwp/lwp-2.8.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/sys-libs/lwp/lwp-2.8.ebuild b/sys-libs/lwp/lwp-2.8.ebuild index 42499946341..fae40ac9989 100644 --- a/sys-libs/lwp/lwp-2.8.ebuild +++ b/sys-libs/lwp/lwp-2.8.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit ltprune +EAPI=7 DESCRIPTION="Light-weight process library (used by Coda)" HOMEPAGE="http://www.coda.cs.cmu.edu/" @@ -11,7 +10,6 @@ SRC_URI="http://www.coda.cs.cmu.edu/pub/lwp/src/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="1" KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86" -IUSE="" PATCHES=( "${FILESDIR}"/${P}-ia64.patch @@ -23,5 +21,5 @@ src_configure() { src_install() { default - prune_libtool_files + find "${ED}" -name '*.la' -delete || die }