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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15425158041 for ; Sun, 24 Mar 2024 06:57:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43869E29BE; Sun, 24 Mar 2024 06:57:26 +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 232CFE29BE for ; Sun, 24 Mar 2024 06:57:26 +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 37C30340DE6 for ; Sun, 24 Mar 2024 06:57:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 736A3B6F for ; Sun, 24 Mar 2024 06:57:23 +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: <1711263395.badab11d7c186f4c0140f06771d3ce3d66190a91.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/sundials/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/sundials/sundials-5.8.0.ebuild sci-libs/sundials/sundials-6.2.0.ebuild sci-libs/sundials/sundials-6.5.0.ebuild X-VCS-Directories: sci-libs/sundials/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: badab11d7c186f4c0140f06771d3ce3d66190a91 X-VCS-Branch: master Date: Sun, 24 Mar 2024 06:57:23 +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: aa9dc6ca-b217-4b1e-9c99-48b32a14252a X-Archives-Hash: 6fc3abd1895858605ea5784e215c24d5 commit: badab11d7c186f4c0140f06771d3ce3d66190a91 Author: Eli Schwartz gmail com> AuthorDate: Sun Mar 24 06:11:42 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 24 06:56:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=badab11d sci-libs/sundials: mark as LTO-unsafe It fails with linking errors that are probably fortran related. An upstream ticket exists since 2021 but no sign anything is being done about it. Bug: https://github.com/LLNL/sundials/issues/97 Closes: https://bugs.gentoo.org/862933 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sci-libs/sundials/sundials-5.8.0.ebuild | 8 +++++++- sci-libs/sundials/sundials-6.2.0.ebuild | 8 +++++++- sci-libs/sundials/sundials-6.5.0.ebuild | 8 +++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/sci-libs/sundials/sundials-5.8.0.ebuild b/sci-libs/sundials/sundials-5.8.0.ebuild index 517e32342ded..53665c56e14f 100644 --- a/sci-libs/sundials/sundials-5.8.0.ebuild +++ b/sci-libs/sundials/sundials-5.8.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -57,6 +57,12 @@ src_prepare() { } src_configure() { + # undefined reference to `psolve' + # undefined reference to `psetup' + # https://bugs.gentoo.org/862933 + # https://github.com/LLNL/sundials/issues/97 + filter-lto + mycmakeargs+=( -DBUILD_FORTRAN77_INTERFACE=$(usex fortran) -DBUILD_FORTRAN_MODULE_INTERFACE=$(usex fortran) diff --git a/sci-libs/sundials/sundials-6.2.0.ebuild b/sci-libs/sundials/sundials-6.2.0.ebuild index 6c7c190fc0c7..d7351c6df946 100644 --- a/sci-libs/sundials/sundials-6.2.0.ebuild +++ b/sci-libs/sundials/sundials-6.2.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -58,6 +58,12 @@ src_prepare() { } src_configure() { + # undefined reference to `psolve' + # undefined reference to `psetup' + # https://bugs.gentoo.org/862933 + # https://github.com/LLNL/sundials/issues/97 + filter-lto + mycmakeargs+=( -DBUILD_FORTRAN_MODULE_INTERFACE=$(usex fortran) -DBUILD_SHARED_LIBS=ON diff --git a/sci-libs/sundials/sundials-6.5.0.ebuild b/sci-libs/sundials/sundials-6.5.0.ebuild index 3c5b1fe76979..d98b371af267 100644 --- a/sci-libs/sundials/sundials-6.5.0.ebuild +++ b/sci-libs/sundials/sundials-6.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -58,6 +58,12 @@ src_prepare() { } src_configure() { + # undefined reference to `psolve' + # undefined reference to `psetup' + # https://bugs.gentoo.org/862933 + # https://github.com/LLNL/sundials/issues/97 + filter-lto + mycmakeargs+=( -DBUILD_FORTRAN_MODULE_INTERFACE=$(usex fortran) -DBUILD_SHARED_LIBS=ON