From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id BC59B158176 for ; Sun, 19 Oct 2025 16:36:22 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A450D340FBD for ; Sun, 19 Oct 2025 16:36:22 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 97FB7110561; Sun, 19 Oct 2025 16:36:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 8FA631104B5 for ; Sun, 19 Oct 2025 16:36:21 +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 3B8FA340FBD for ; Sun, 19 Oct 2025 16:36:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F1D939E8 for ; Sun, 19 Oct 2025 16:36:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1760891704.1486041d17ddd2a329cbc9fee917afb6cf9a0e71.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mongo-c-driver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/mongo-c-driver/mongo-c-driver-1.24.4-r1.ebuild X-VCS-Directories: dev-libs/mongo-c-driver/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1486041d17ddd2a329cbc9fee917afb6cf9a0e71 X-VCS-Branch: master Date: Sun, 19 Oct 2025 16:36:19 +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: fc8d19ea-5bd7-4920-aa1e-114985d622fb X-Archives-Hash: dbdc25032d00fa8f4cc662e177966866 commit: 1486041d17ddd2a329cbc9fee917afb6cf9a0e71 Author: Robert Förster gmake de> AuthorDate: Sun Oct 19 10:46:53 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 19 16:35:04 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1486041d dev-libs/mongo-c-driver: fix USE=-static-libs Closes: https://bugs.gentoo.org/953521 Signed-off-by: Robert Förster gmake.de> Part-of: https://github.com/gentoo/gentoo/pull/44242 Signed-off-by: Sam James gentoo.org> dev-libs/mongo-c-driver/mongo-c-driver-1.24.4-r1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-1.24.4-r1.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-1.24.4-r1.ebuild index 50258404f93c..51b4a0a862af 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-1.24.4-r1.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-1.24.4-r1.ebuild @@ -64,6 +64,9 @@ src_prepare() { sed -i '/message (STATUS "disabling test-libmongoc since using system libbson")/{d}' CMakeLists.txt || die sed -i '/SET (ENABLE_TESTS OFF)/{d}' CMakeLists.txt || die sed -i 's##"bson/bson-private.h"#' src/libbson/tests/test-bson.c || die + + # bug 953521 + sed -i 's/message (FATAL_ERROR "System libbson built without static library target")/message (STATUS "System libbson built without static library target")/' CMakeLists.txt || die } src_configure() {