[packages/python3-numpy] apply meson arm fix to vendored meson...

atler atler at pld-linux.org
Thu Mar 27 02:01:47 CET 2025


commit 7158ebc4b2eb388b8d5e73268b531560bd0eae7d
Author: Jan Palus <atler at pld-linux.org>
Date:   Wed Mar 26 23:59:49 2025 +0100

    apply meson arm fix to vendored meson...

 meson-allow-arm-on-arm64.patch | 29 +++++++++++++++++++++++++++++
 python3-numpy.spec             |  2 ++
 2 files changed, 31 insertions(+)
---
diff --git a/python3-numpy.spec b/python3-numpy.spec
index 810ff9c..bcab1e5 100644
--- a/python3-numpy.spec
+++ b/python3-numpy.spec
@@ -15,6 +15,7 @@ Group:		Libraries/Python
 #Source0Download: https://github.com/numpy/numpy/releases/
 Source0:	https://github.com/numpy/numpy/releases/download/v%{version}/%{module}-%{version}.tar.gz
 # Source0-md5:	56232f4a69b03dd7a87a55fffc5f2ebc
+Patch0:		meson-allow-arm-on-arm64.patch
 URL:		https://github.com/numpy/numpy
 %if "%(test -w /dev/shm ; echo $?)" != "0"
 BuildRequires:	WRITABLE(/dev/shm)
@@ -76,6 +77,7 @@ Generator interfejsów z Fortranu do Pythona 3.
 
 %prep
 %setup -q -n %{module}-%{version}
+%patch -P0 -p1 -R -d vendored-meson/meson
 
 # fix #!/usr/bin/env python -> #!/usr/bin/python:
 %{__sed} -i -e '1s,^#!.*python3,#!%{__python3},' numpy/testing/print_coercion_tables.py
diff --git a/meson-allow-arm-on-arm64.patch b/meson-allow-arm-on-arm64.patch
new file mode 100644
index 0000000..011de41
--- /dev/null
+++ b/meson-allow-arm-on-arm64.patch
@@ -0,0 +1,29 @@
+From ec027fe1161e011c7bcb43c50ba34b8405839708 Mon Sep 17 00:00:00 2001
+From: Alyssa Ross <hi at alyssa.is>
+Date: Sun, 14 Jul 2024 17:39:30 +0200
+Subject: [PATCH] Revert "Support armel/armhf builds on native arm64 hosts."
+
+This reverts commit cc201a539674babf46f726859587afb5ed6a6867.
+
+It's true that some aarch64 CPUs can run 32-bit ARM code, but some
+(especially high-end ones, those most likely to be running builds)
+cannot.  It's better to assume that they can't, so builds don't
+unnecessarily fail due to attempting to run a sanity check executable.
+---
+ mesonbuild/environment.py | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
+index be40dbcfd4be..f71bf219cf64 100644
+--- a/mesonbuild/environment.py
++++ b/mesonbuild/environment.py
+@@ -512,8 +512,7 @@ def machine_info_can_run(machine_info: MachineInfo):
+     return \
+         (machine_info.cpu_family == true_build_cpu_family) or \
+         ((true_build_cpu_family == 'x86_64') and (machine_info.cpu_family == 'x86')) or \
+-        ((true_build_cpu_family == 'mips64') and (machine_info.cpu_family == 'mips')) or \
+-        ((true_build_cpu_family == 'aarch64') and (machine_info.cpu_family == 'arm'))
++        ((true_build_cpu_family == 'mips64') and (machine_info.cpu_family == 'mips'))
+ 
+ class Environment:
+     private_dir = 'meson-private'
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python3-numpy.git/commitdiff/9d5d7baeed40dd66293888022ed097098f3e061a



More information about the pld-cvs-commit mailing list