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 8323F15802F for ; Wed, 8 Mar 2023 14:23:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D12FBE0824; Wed, 8 Mar 2023 14:22:59 +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 B9A9CE0824 for ; Wed, 8 Mar 2023 14:22:59 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CEF0A3413F7 for ; Wed, 8 Mar 2023 14:22:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45E59888 for ; Wed, 8 Mar 2023 14:22:57 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1678285368.a597bb111dbd008fc6e6cec248bfa1f325f270d3.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/flashrom/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/flashrom/flashrom-1.3.0.ebuild X-VCS-Directories: sys-apps/flashrom/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: a597bb111dbd008fc6e6cec248bfa1f325f270d3 X-VCS-Branch: master Date: Wed, 8 Mar 2023 14:22:57 +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: 2e91a9cb-43fd-42ec-9d82-04ddf4069ebd X-Archives-Hash: 736806f66c7c1ed7cd68329d3f277e4f commit: a597bb111dbd008fc6e6cec248bfa1f325f270d3 Author: Marek Szuba gentoo org> AuthorDate: Wed Mar 8 14:20:54 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed Mar 8 14:22:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a597bb11 sys-apps/flashrom: do not install static libraries Closes: https://bugs.gentoo.org/900364 Signed-off-by: Marek Szuba gentoo.org> sys-apps/flashrom/flashrom-1.3.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-apps/flashrom/flashrom-1.3.0.ebuild b/sys-apps/flashrom/flashrom-1.3.0.ebuild index 14e290966f1b..96d7cbdffb27 100644 --- a/sys-apps/flashrom/flashrom-1.3.0.ebuild +++ b/sys-apps/flashrom/flashrom-1.3.0.ebuild @@ -117,6 +117,11 @@ src_configure() { src_install() { meson_src_install + # Upstream requires libflashrom.a to be present at build time because the classic CLI + # executable uses internal symbols from that library. Therefore, we let it be built + # but keep it out of the installed tree. + find "${ED}" -name '*.a' -delete || die + if use tools; then dosbin "${BUILD_DIR}"/util/ich_descriptors_tool/ich_descriptors_tool fi