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 72A27159C9B for ; Thu, 1 Aug 2024 10:12:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73787E2A24; Thu, 1 Aug 2024 10:12:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 578F6E2A24 for ; Thu, 1 Aug 2024 10:12:04 +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 6A32533FE60 for ; Thu, 1 Aug 2024 10:12:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 995A511B6 for ; Thu, 1 Aug 2024 10:12:01 +0000 (UTC) From: "Lucio Sauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lucio Sauer" Message-ID: <1722466864.7332d26856d9e7ee6d8b1499c309b84015dde686.watermanpaint@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-fs/fsverity-utils/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild X-VCS-Directories: sys-fs/fsverity-utils/ X-VCS-Committer: watermanpaint X-VCS-Committer-Name: Lucio Sauer X-VCS-Revision: 7332d26856d9e7ee6d8b1499c309b84015dde686 X-VCS-Branch: master Date: Thu, 1 Aug 2024 10:12:01 +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: 929b82f2-3866-4cf8-98cd-4e7cacf948e1 X-Archives-Hash: d578e5fb5934887f4fb3bb5d1648ffe5 commit: 7332d26856d9e7ee6d8b1499c309b84015dde686 Author: Mark Harmstone harmstone com> AuthorDate: Wed Jul 31 23:01:04 2024 +0000 Commit: Lucio Sauer posteo net> CommitDate: Wed Jul 31 23:01:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7332d268 sys-fs/fsverity-utils: add static-libs USE flag Signed-off-by: Mark Harmstone harmstone.com> sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild b/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild index 9dbcd8b68..f76f7a44c 100644 --- a/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild +++ b/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild @@ -19,6 +19,8 @@ HOMEPAGE="https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git" LICENSE="MIT" SLOT="0" +IUSE="static-libs" + DEPEND="dev-libs/openssl:=" RDEPEND="${DEPEND}" @@ -31,4 +33,8 @@ src_compile() { src_install() { emake install CC="$(tc-getCC)" PKGCONF="$(tc-getPKG_CONFIG)" DESTDIR="${D}" \ PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" + + if ! use static-libs ; then + rm "${ED}/usr/$(get_libdir)/libfsverity.a" + fi }