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 5D66215801B 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 6C73EE0866; Sat, 15 Jul 2023 09:07:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 547A4E0866 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 80DEE340A5C 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 DEE20A6A 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: <1689412025.539e82b485a80fe6c8685e5997e60c610660f89f.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/p4est/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/p4est/p4est-2.8.5-r2.ebuild sci-libs/p4est/p4est-2.8.5-r3.ebuild X-VCS-Directories: sci-libs/p4est/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 539e82b485a80fe6c8685e5997e60c610660f89f 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: 46488ce4-dfd7-43f6-9a89-6b405810ac4a X-Archives-Hash: df2c557ca8f6091b5853a8f87d949bd2 commit: 539e82b485a80fe6c8685e5997e60c610660f89f Author: Matthias Maier gentoo org> AuthorDate: Sat Jul 15 08:36:45 2023 +0000 Commit: Matthias Maier gentoo org> CommitDate: Sat Jul 15 09:07:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=539e82b4 sci-libs/p4est: try to avoid a performance regression with 2.8.5 Signed-off-by: Matthias Maier gentoo.org> sci-libs/p4est/{p4est-2.8.5-r2.ebuild => p4est-2.8.5-r3.ebuild} | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sci-libs/p4est/p4est-2.8.5-r2.ebuild b/sci-libs/p4est/p4est-2.8.5-r3.ebuild similarity index 92% rename from sci-libs/p4est/p4est-2.8.5-r2.ebuild rename to sci-libs/p4est/p4est-2.8.5-r3.ebuild index 3bcba02fb697..253f6ee31911 100644 --- a/sci-libs/p4est/p4est-2.8.5-r2.ebuild +++ b/sci-libs/p4est/p4est-2.8.5-r3.ebuild @@ -50,6 +50,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)"