From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id B2E3B15827B for ; Thu, 14 Aug 2025 18:30:19 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 7F2CF340B29 for ; Thu, 14 Aug 2025 18:30:19 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6A9D2110280; Thu, 14 Aug 2025 18:30:18 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 5DFD6110280 for ; Thu, 14 Aug 2025 18:30:18 +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 0AEA0340C77 for ; Thu, 14 Aug 2025 18:30:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66BE42712 for ; Thu, 14 Aug 2025 18:30:16 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1755196170.9d780d9c7dd660130a59e898a3de9f05ca4dccdb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/numpy/numpy-2.3.2-r1.ebuild X-VCS-Directories: dev-python/numpy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9d780d9c7dd660130a59e898a3de9f05ca4dccdb X-VCS-Branch: master Date: Thu, 14 Aug 2025 18:30:16 +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: 866c53d2-77f1-4699-96ad-bccff2823b01 X-Archives-Hash: dad0ec3d6710821b8cb69285c47e7f6a commit: 9d780d9c7dd660130a59e898a3de9f05ca4dccdb Author: Michał Górny gentoo org> AuthorDate: Thu Aug 14 18:29:30 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Aug 14 18:29:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d780d9c dev-python/numpy: Fix typo in asimfhm flag name Closes: https://bugs.gentoo.org/961509 Signed-off-by: Michał Górny gentoo.org> dev-python/numpy/numpy-2.3.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/numpy/numpy-2.3.2-r1.ebuild b/dev-python/numpy/numpy-2.3.2-r1.ebuild index b4da30409d2e..7226a8b7a4c0 100644 --- a/dev-python/numpy/numpy-2.3.2-r1.ebuild +++ b/dev-python/numpy/numpy-2.3.2-r1.ebuild @@ -108,7 +108,7 @@ python_configure_all() { # these two imply ASIMDHP if [[ ${cpu_baseline[@]} && ${cpu_baseline[-1]} == ASIMDHP ]]; then - for flag in asimdhfm sve; do + for flag in asimdfhm sve; do cpu_baseline+=( $(usex "cpu_flags_arm_${flag}" "${flag^^}") )