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 BD9451581D3 for ; Wed, 15 May 2024 14:31:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E019EE2A51; Wed, 15 May 2024 14:31:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 C4FC0E2A51 for ; Wed, 15 May 2024 14:31:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0E83B335D63 for ; Wed, 15 May 2024 14:31:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42E811A35 for ; Wed, 15 May 2024 14:31:31 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1715783470.6817a75995db17a403b179d9b2970aa6d41fe089.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/xfsprogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/xfsprogs/xfsprogs-6.7.0-r2.ebuild sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild X-VCS-Directories: sys-fs/xfsprogs/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 6817a75995db17a403b179d9b2970aa6d41fe089 X-VCS-Branch: master Date: Wed, 15 May 2024 14:31:31 +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: c8afaf5e-be77-49ee-a3ee-391307ea55ff X-Archives-Hash: 5614f50296b0e936a1179c912c1070c2 commit: 6817a75995db17a403b179d9b2970aa6d41fe089 Author: Mike Gilbert gentoo org> AuthorDate: Wed May 15 14:30:33 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed May 15 14:31:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6817a759 sys-fs/xfsprogs: remove libhandle.a when static-libs is disabled Closes: https://bugs.gentoo.org/725538 Signed-off-by: Mike Gilbert gentoo.org> .../xfsprogs/{xfsprogs-6.7.0-r2.ebuild => xfsprogs-6.7.0-r3.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys-fs/xfsprogs/xfsprogs-6.7.0-r2.ebuild b/sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild similarity index 95% rename from sys-fs/xfsprogs/xfsprogs-6.7.0-r2.ebuild rename to sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild index 6781e5f02997..dfca5f7562c5 100644 --- a/sys-fs/xfsprogs/xfsprogs-6.7.0-r2.ebuild +++ b/sys-fs/xfsprogs/xfsprogs-6.7.0-r3.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.kernel.org/pub/linux/utils/fs/xfs/${PN}/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="icu libedit nls selinux" +IUSE="icu libedit nls selinux static-libs" RDEPEND=" dev-libs/inih @@ -92,4 +92,8 @@ src_install() { # XXX: There's a missing dep in the install-dev target, so split it emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install-dev + + if ! use static-libs; then + rm "${ED}/usr/$(get_libdir)/libhandle.a" || die + fi }