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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 495E9158094 for ; Fri, 29 Jul 2022 08:24:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E02A3E0D80; Fri, 29 Jul 2022 08:24:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 958FAE0D80 for ; Fri, 29 Jul 2022 08:24:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 969383411F2 for ; Fri, 29 Jul 2022 08:24:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 085B054D for ; Fri, 29 Jul 2022 08:24:53 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1659083060.d43bdb4245d6d131e08ea4ee0c7377231a3bbd5c.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/chrpath/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/chrpath/chrpath-0.16-r1.ebuild app-admin/chrpath/chrpath-0.16.ebuild X-VCS-Directories: app-admin/chrpath/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: d43bdb4245d6d131e08ea4ee0c7377231a3bbd5c X-VCS-Branch: master Date: Fri, 29 Jul 2022 08:24:53 +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: 3f8fcc53-cb90-4f3f-b9ee-94fe1e80e5a2 X-Archives-Hash: b449188eb057d82d33cdd48dacb239dc commit: d43bdb4245d6d131e08ea4ee0c7377231a3bbd5c Author: David Seifert gentoo org> AuthorDate: Fri Jul 29 08:24:20 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Jul 29 08:24:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d43bdb42 app-admin/chrpath: update EAPI 7 -> 8 * remove USE="static-libs" since there is no rationale given for keeping it. Signed-off-by: David Seifert gentoo.org> .../chrpath/{chrpath-0.16.ebuild => chrpath-0.16-r1.ebuild} | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/app-admin/chrpath/chrpath-0.16.ebuild b/app-admin/chrpath/chrpath-0.16-r1.ebuild similarity index 84% rename from app-admin/chrpath/chrpath-0.16.ebuild rename to app-admin/chrpath/chrpath-0.16-r1.ebuild index 6913b7a27fb8..287cacc4a7d6 100644 --- a/app-admin/chrpath/chrpath-0.16.ebuild +++ b/app-admin/chrpath/chrpath-0.16-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools @@ -12,7 +12,6 @@ SRC_URI="https://alioth-archive.debian.org/releases/${PN}/${PN}/${PV}/${P}.tar.g LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="static-libs" PATCHES=( "${FILESDIR}"/${P}-multilib.patch @@ -29,13 +28,7 @@ src_prepare() { eautoreconf } -src_configure() { - econf $(use_enable static-libs static) -} - src_install() { default - if ! use static-libs; then - find "${D}" -name "*.la" -delete || die - fi + find "${ED}" -name '*.la' -delete || die }