[packages/aubio] - added patch for compatibility with numpy 1.19+
qboosh
qboosh at pld-linux.org
Sun Mar 23 09:39:42 CET 2025
commit 0c65e2dfdc62eeb9ecbae7c840def169b8e939dd
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Sun Mar 23 08:29:11 2025 +0100
- added patch for compatibility with numpy 1.19+
aubio-numpy.patch | 30 ++++++++++++++++++++++++++++++
aubio.spec | 2 ++
2 files changed, 32 insertions(+)
---
diff --git a/aubio.spec b/aubio.spec
index 36f2764..afdb4cf 100644
--- a/aubio.spec
+++ b/aubio.spec
@@ -21,6 +21,7 @@ Patch0: ffmpeg6.patch
Patch1: %{name}-python39.patch
Patch2: %{name}-invalid-escape-sequence.patch
Patch3: %{name}-imp-removed.patch
+Patch4: %{name}-numpy.patch
URL: https://aubio.org/
# libavcodec >= 54.35.0, libavformat >= 52.3.0, libavutil >= 52.3.0, libswresample >= 1.2.0 || libavresample >= 1.0.1
BuildRequires: ffmpeg-devel >= 1.1
@@ -162,6 +163,7 @@ Wiązania Pythona 3 do biblioteki aubio.
%patch -P 1 -p1
%patch -P 2 -p1
%patch -P 3 -p1
+%patch -P 4 -p1
%build
export CC="%{__cc}"
diff --git a/aubio-numpy.patch b/aubio-numpy.patch
new file mode 100644
index 0000000..275bf2c
--- /dev/null
+++ b/aubio-numpy.patch
@@ -0,0 +1,30 @@
+--- aubio-0.4.9/python/ext/ufuncs.c.orig 2018-12-10 18:15:31.000000000 +0100
++++ aubio-0.4.9/python/ext/ufuncs.c 2025-03-22 22:36:13.914310126 +0100
+@@ -3,8 +3,13 @@
+
+ typedef smpl_t (*aubio_unary_func_t)(smpl_t input);
+
++#ifdef NPY_1_19_API_VERSION
++static void aubio_PyUFunc_d_d(char **args, npy_intp const *dimensions,
++ npy_intp const *steps, void* data)
++#else
+ static void aubio_PyUFunc_d_d(char **args, npy_intp *dimensions,
+ npy_intp* steps, void* data)
++#endif
+ {
+ npy_intp i;
+ npy_intp n = dimensions[0];
+@@ -22,8 +27,13 @@ static void aubio_PyUFunc_d_d(char **arg
+ }
+ }
+
++#ifdef NPY_1_19_API_VERSION
++static void aubio_PyUFunc_f_f_As_d_d(char **args, npy_intp const *dimensions,
++ npy_intp const *steps, void* data)
++#else
+ static void aubio_PyUFunc_f_f_As_d_d(char **args, npy_intp *dimensions,
+ npy_intp* steps, void* data)
++#endif
+ {
+ npy_intp i;
+ npy_intp n = dimensions[0];
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/aubio.git/commitdiff/0c65e2dfdc62eeb9ecbae7c840def169b8e939dd
More information about the pld-cvs-commit
mailing list