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 6F31B158041 for ; Wed, 6 Mar 2024 05:30:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A43B1E29F0; Wed, 6 Mar 2024 05:30:15 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 83C62E29F0 for ; Wed, 6 Mar 2024 05:30: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 952A1335D6A for ; Wed, 6 Mar 2024 05:30:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7EF4E95 for ; Wed, 6 Mar 2024 05:30:12 +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: <1709702990.845cbe2fef97ec5d8f0cb983ff075d2be9d72537.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/arpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/arpack/arpack-3.9.1.ebuild sci-libs/arpack/arpack-9999.ebuild X-VCS-Directories: sci-libs/arpack/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 845cbe2fef97ec5d8f0cb983ff075d2be9d72537 X-VCS-Branch: master Date: Wed, 6 Mar 2024 05:30: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: d42c31f3-d5f9-4b8c-ae2e-050dac531231 X-Archives-Hash: 231911cd6482d39e5dbc29215543ba4e commit: 845cbe2fef97ec5d8f0cb983ff075d2be9d72537 Author: Eli Schwartz gmail com> AuthorDate: Wed Mar 6 03:37:57 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 6 05:29:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=845cbe2f sci-libs/arpack: mark as LTO-unsafe It fails in tests, but unfortunately that means we cannot... test... compiling with LTO. Closes: https://bugs.gentoo.org/878139 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sci-libs/arpack/arpack-3.9.1.ebuild | 11 +++++++++-- sci-libs/arpack/arpack-9999.ebuild | 11 +++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/sci-libs/arpack/arpack-3.9.1.ebuild b/sci-libs/arpack/arpack-3.9.1.ebuild index c3a10d3e5d15..fe8ac4dd7b91 100644 --- a/sci-libs/arpack/arpack-3.9.1.ebuild +++ b/sci-libs/arpack/arpack-3.9.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools fortran-2 toolchain-funcs +inherit autotools flag-o-matic fortran-2 toolchain-funcs DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems" HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/ https://github.com/opencollab/arpack-ng" @@ -39,6 +39,13 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/878139 + # https://github.com/opencollab/arpack-ng/issues/451 + # + # Only when building tests. Still this means we cannot test it. + filter-lto + econf \ --disable-static \ --enable-icb \ diff --git a/sci-libs/arpack/arpack-9999.ebuild b/sci-libs/arpack/arpack-9999.ebuild index 0388be81f2bc..97ecc817d3fc 100644 --- a/sci-libs/arpack/arpack-9999.ebuild +++ b/sci-libs/arpack/arpack-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools fortran-2 toolchain-funcs +inherit autotools flag-o-matic fortran-2 toolchain-funcs DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems" HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/ https://github.com/opencollab/arpack-ng" @@ -35,6 +35,13 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/878139 + # https://github.com/opencollab/arpack-ng/issues/451 + # + # Only when building tests. Still this means we cannot test it. + filter-lto + econf \ --disable-static \ --enable-icb \