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 5BFCE15800A for ; Sat, 15 Jul 2023 09:07:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A124E086A; Sat, 15 Jul 2023 09:07:15 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6F0EFE086A for ; Sat, 15 Jul 2023 09:07:15 +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 6CDEC340A12 for ; Sat, 15 Jul 2023 09:07:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CACD7A36 for ; Sat, 15 Jul 2023 09:07:12 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1689412018.d2e7a69e4ca554651411c3e73468b0a2eaced1cd.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libsc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/libsc/libsc-2.8.5-r2.ebuild sci-libs/libsc/libsc-2.8.5-r3.ebuild X-VCS-Directories: sci-libs/libsc/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: d2e7a69e4ca554651411c3e73468b0a2eaced1cd X-VCS-Branch: master Date: Sat, 15 Jul 2023 09:07:12 +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: de4f0742-302d-48f3-b5f3-b75635171fbd X-Archives-Hash: ab9c66c77af448edcc32d13ad96417a5 commit: d2e7a69e4ca554651411c3e73468b0a2eaced1cd Author: Matthias Maier gentoo org> AuthorDate: Sat Jul 15 08:36:03 2023 +0000 Commit: Matthias Maier gentoo org> CommitDate: Sat Jul 15 09:06:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e7a69e sci-libs/libsc: try to avoid a performance regression with 2.8.5 Signed-off-by: Matthias Maier gentoo.org> sci-libs/libsc/{libsc-2.8.5-r2.ebuild => libsc-2.8.5-r3.ebuild} | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sci-libs/libsc/libsc-2.8.5-r2.ebuild b/sci-libs/libsc/libsc-2.8.5-r3.ebuild similarity index 92% rename from sci-libs/libsc/libsc-2.8.5-r2.ebuild rename to sci-libs/libsc/libsc-2.8.5-r3.ebuild index 786ecf6012b8..037755f94524 100644 --- a/sci-libs/libsc/libsc-2.8.5-r2.ebuild +++ b/sci-libs/libsc/libsc-2.8.5-r3.ebuild @@ -47,6 +47,10 @@ pkg_setup() { } src_configure() { + # avoid using debug codepaths that are manually enabled with the + # RelWithDebInfo build type + local CMAKE_BUILD_TYPE="Release" + local mycmakeargs=( -Dmpi="$(usex mpi)" -Dopenmp="$(usex openmp)"