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 B142D15808A for ; Tue, 22 Jul 2025 19:41:57 +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 8CC153415DF for ; Tue, 22 Jul 2025 19:41:57 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B048011055F; Tue, 22 Jul 2025 19:41:53 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id A5BEC11055F for ; Tue, 22 Jul 2025 19:41:53 +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 25ED0340C76 for ; Tue, 22 Jul 2025 19:41:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DA4E3293 for ; Tue, 22 Jul 2025 19:41:51 +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: <1753213267.23dbbaf802b7efe35d1e8a27c0dccff5a7ef5e72.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/manifold/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/manifold/manifold-3.1.0-r1.ebuild sci-mathematics/manifold/manifold-3.1.0.ebuild sci-mathematics/manifold/manifold-9999.ebuild X-VCS-Directories: sci-mathematics/manifold/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 23dbbaf802b7efe35d1e8a27c0dccff5a7ef5e72 X-VCS-Branch: master Date: Tue, 22 Jul 2025 19:41:51 +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: ae141675-8530-4acb-b9b3-f5fcbc556cba X-Archives-Hash: 9bf688ca2fd26bc42089eb8ebd6b695b commit: 23dbbaf802b7efe35d1e8a27c0dccff5a7ef5e72 Author: Sam James gentoo org> AuthorDate: Tue Jul 22 19:35:25 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jul 22 19:41:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23dbbaf8 sci-mathematics/manifold: crank subslot for broken ABI zen_desu reported openscad not opening: ``` $ openscad openscad: symbol lookup error: openscad: undefined symbol: _ZN8manifold11TriangulateERKSt6vectorIS0_IN6linalg3vecIdLi2EEESaIS3_EESaIS5_EEd ``` In 3.1.0, ABI broke: ``` --- ... +++ include/manifold/polygon.h 2025-05-14 20:50:31.000000000 +0100 @@ -52,10 +52,10 @@ using PolygonsIdx = std::vector TriangulateIdx(const PolygonsIdx &polys, double epsilon = -1, +std::vector TriangulateIdx(const PolygonsIdx& polys, double epsilon = -1, bool allowConvex = true); -std::vector Triangulate(const Polygons &polygons, double epsilon = -1, +std::vector Triangulate(const Polygons& polygons, double epsilon = -1, bool allowConvex = true); /** @} */ } // namespace manifold ``` Signed-off-by: Sam James gentoo.org> .../manifold/{manifold-3.1.0.ebuild => manifold-3.1.0-r1.ebuild} | 2 +- sci-mathematics/manifold/manifold-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-mathematics/manifold/manifold-3.1.0.ebuild b/sci-mathematics/manifold/manifold-3.1.0-r1.ebuild similarity index 99% rename from sci-mathematics/manifold/manifold-3.1.0.ebuild rename to sci-mathematics/manifold/manifold-3.1.0-r1.ebuild index 2ae1d1bc7f87..6c93ca954272 100644 --- a/sci-mathematics/manifold/manifold-3.1.0.ebuild +++ b/sci-mathematics/manifold/manifold-3.1.0-r1.ebuild @@ -25,7 +25,7 @@ else fi LICENSE="Apache-2.0" -SLOT="0" +SLOT="0/1" IUSE="debug python +tbb test" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" diff --git a/sci-mathematics/manifold/manifold-9999.ebuild b/sci-mathematics/manifold/manifold-9999.ebuild index 2854b6b9e837..2f9ced603aae 100644 --- a/sci-mathematics/manifold/manifold-9999.ebuild +++ b/sci-mathematics/manifold/manifold-9999.ebuild @@ -25,7 +25,7 @@ else fi LICENSE="Apache-2.0" -SLOT="0" +SLOT="0/1" IUSE="debug python +tbb test" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"