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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 99703158042 for ; Tue, 22 Oct 2024 06:45:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3476E088A; Tue, 22 Oct 2024 06:45:28 +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 86550E088A for ; Tue, 22 Oct 2024 06:45:28 +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 72EF2335D72 for ; Tue, 22 Oct 2024 06:45:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8129811DF for ; Tue, 22 Oct 2024 06:45:25 +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: <1729579477.fc563957c93c4f24aebe26f45a8c8be836edb118.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/numpy/numpy-1.26.4.ebuild dev-python/numpy/numpy-2.0.0.ebuild dev-python/numpy/numpy-2.0.2.ebuild dev-python/numpy/numpy-2.1.1.ebuild dev-python/numpy/numpy-2.1.2.ebuild X-VCS-Directories: dev-python/numpy/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: fc563957c93c4f24aebe26f45a8c8be836edb118 X-VCS-Branch: master Date: Tue, 22 Oct 2024 06:45:25 +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: b53fdfac-11ba-4b5f-900b-b9a1b5a1507a X-Archives-Hash: 06afa93c66c02cce97220e7321650e97 commit: fc563957c93c4f24aebe26f45a8c8be836edb118 Author: Eli Schwartz gentoo org> AuthorDate: Tue Oct 22 06:21:25 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Tue Oct 22 06:44:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc563957 dev-python/numpy: mark implicit function decl as FP Checks for intrinsics support via a function call style that will correctly fail to link if not available. Closes: https://bugs.gentoo.org/925367 Signed-off-by: Eli Schwartz gentoo.org> dev-python/numpy/numpy-1.26.4.ebuild | 5 +++++ dev-python/numpy/numpy-2.0.0.ebuild | 5 +++++ dev-python/numpy/numpy-2.0.2.ebuild | 5 +++++ dev-python/numpy/numpy-2.1.1.ebuild | 5 +++++ dev-python/numpy/numpy-2.1.2.ebuild | 5 +++++ 5 files changed, 25 insertions(+) diff --git a/dev-python/numpy/numpy-1.26.4.ebuild b/dev-python/numpy/numpy-1.26.4.ebuild index 9f82b9383db2..56f02ed4ab4c 100644 --- a/dev-python/numpy/numpy-1.26.4.ebuild +++ b/dev-python/numpy/numpy-1.26.4.ebuild @@ -50,6 +50,11 @@ BDEPEND=" ) " +QA_CONFIG_IMPL_DECL_SKIP=( + # https://bugs.gentoo.org/925367 + vrndq_f32 +) + EPYTEST_XDIST=1 distutils_enable_tests pytest diff --git a/dev-python/numpy/numpy-2.0.0.ebuild b/dev-python/numpy/numpy-2.0.0.ebuild index be5fcd31bbdb..b5ebbb001efe 100644 --- a/dev-python/numpy/numpy-2.0.0.ebuild +++ b/dev-python/numpy/numpy-2.0.0.ebuild @@ -48,6 +48,11 @@ BDEPEND=" ) " +QA_CONFIG_IMPL_DECL_SKIP=( + # https://bugs.gentoo.org/925367 + vrndq_f32 +) + EPYTEST_XDIST=1 distutils_enable_tests pytest diff --git a/dev-python/numpy/numpy-2.0.2.ebuild b/dev-python/numpy/numpy-2.0.2.ebuild index 9303f488ae6b..36b49c01956b 100644 --- a/dev-python/numpy/numpy-2.0.2.ebuild +++ b/dev-python/numpy/numpy-2.0.2.ebuild @@ -48,6 +48,11 @@ BDEPEND=" ) " +QA_CONFIG_IMPL_DECL_SKIP=( + # https://bugs.gentoo.org/925367 + vrndq_f32 +) + EPYTEST_XDIST=1 distutils_enable_tests pytest diff --git a/dev-python/numpy/numpy-2.1.1.ebuild b/dev-python/numpy/numpy-2.1.1.ebuild index c90d9636868d..c65ca99ea528 100644 --- a/dev-python/numpy/numpy-2.1.1.ebuild +++ b/dev-python/numpy/numpy-2.1.1.ebuild @@ -48,6 +48,11 @@ BDEPEND=" ) " +QA_CONFIG_IMPL_DECL_SKIP=( + # https://bugs.gentoo.org/925367 + vrndq_f32 +) + EPYTEST_XDIST=1 distutils_enable_tests pytest diff --git a/dev-python/numpy/numpy-2.1.2.ebuild b/dev-python/numpy/numpy-2.1.2.ebuild index 1cab76b3b2db..b2c954fbd4cb 100644 --- a/dev-python/numpy/numpy-2.1.2.ebuild +++ b/dev-python/numpy/numpy-2.1.2.ebuild @@ -48,6 +48,11 @@ BDEPEND=" ) " +QA_CONFIG_IMPL_DECL_SKIP=( + # https://bugs.gentoo.org/925367 + vrndq_f32 +) + EPYTEST_XDIST=1 distutils_enable_tests pytest