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 CA10D1581C1 for ; Mon, 15 Jul 2024 08:01:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 153FAE2ACB; Mon, 15 Jul 2024 08:01:52 +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 EA7B2E2AC9 for ; Mon, 15 Jul 2024 08:01:51 +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 0899634072E for ; Mon, 15 Jul 2024 08:01:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DA6B1E21 for ; Mon, 15 Jul 2024 08:01:49 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1721030490.fd20dfdcbc8a3eae3ac88c6e7198af0a0fff7584.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/fftw/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/fftw/fftw-3.3.10.ebuild sci-libs/fftw/fftw-9999.ebuild X-VCS-Directories: sci-libs/fftw/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: fd20dfdcbc8a3eae3ac88c6e7198af0a0fff7584 X-VCS-Branch: master Date: Mon, 15 Jul 2024 08:01:49 +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: e437b80c-3894-47da-915c-954cb418cbc4 X-Archives-Hash: f9da9e40fb833d629a6d78e3c3d11688 commit: fd20dfdcbc8a3eae3ac88c6e7198af0a0fff7584 Author: Eli Schwartz gentoo org> AuthorDate: Mon Jul 15 03:48:01 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Mon Jul 15 08:01:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd20dfdc sci-libs/fftw: set QA_CONFIG_IMPL_DECL_SKIP for false positive The autotools check is written to always fail to link. It includes a header which on some systems contains: "UNICOS _rtc() intrinsic." On linux, it fails to link and with gcc 14 fails to compile as well, which is all as expected. Closes: https://bugs.gentoo.org/898442 Signed-off-by: Eli Schwartz gentoo.org> sci-libs/fftw/fftw-3.3.10.ebuild | 6 ++++++ sci-libs/fftw/fftw-9999.ebuild | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/sci-libs/fftw/fftw-3.3.10.ebuild b/sci-libs/fftw/fftw-3.3.10.ebuild index 3e3cdf42bc76..ea7a5189348f 100644 --- a/sci-libs/fftw/fftw-3.3.10.ebuild +++ b/sci-libs/fftw/fftw-3.3.10.ebuild @@ -33,6 +33,12 @@ BDEPEND="test? ( dev-lang/perl )" HTML_DOCS=( doc/html/. ) +QA_CONFIG_IMPL_DECL_SKIP=( + # check fails with any version of gcc. On <14: + # :(.text.startup+0x19): undefined reference to `_rtc' + _rtc +) + pkg_pretend() { [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp } diff --git a/sci-libs/fftw/fftw-9999.ebuild b/sci-libs/fftw/fftw-9999.ebuild index f1bc2d876ad8..176526968102 100644 --- a/sci-libs/fftw/fftw-9999.ebuild +++ b/sci-libs/fftw/fftw-9999.ebuild @@ -33,6 +33,12 @@ BDEPEND="test? ( dev-lang/perl )" HTML_DOCS=( doc/html/. ) +QA_CONFIG_IMPL_DECL_SKIP=( + # check fails with any version of gcc. On <14: + # :(.text.startup+0x19): undefined reference to `_rtc' + _rtc +) + pkg_pretend() { [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp }