diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-07-22 17:56:04 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2024-07-22 17:56:04 +0000 |
| commit | 7a0e8531efb990611394ecb436e5da2b8947ddf6 (patch) | |
| tree | d33f01ef3d7e9e41ee338de5b598102578e8a3cb /dev-python/numpy/files | |
| parent | 7128f8f8c3ad117ad2fc308b09c574c21086d3e1 (diff) | |
| download | baldeagleos-repo-7a0e8531efb990611394ecb436e5da2b8947ddf6.tar.gz baldeagleos-repo-7a0e8531efb990611394ecb436e5da2b8947ddf6.tar.xz baldeagleos-repo-7a0e8531efb990611394ecb436e5da2b8947ddf6.zip | |
Adding metadata
Diffstat (limited to 'dev-python/numpy/files')
| -rw-r--r-- | dev-python/numpy/files/numpy-2.0.0_rc2-gcc14.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-python/numpy/files/numpy-2.0.0_rc2-gcc14.patch b/dev-python/numpy/files/numpy-2.0.0_rc2-gcc14.patch deleted file mode 100644 index f3ed3727520d..000000000000 --- a/dev-python/numpy/files/numpy-2.0.0_rc2-gcc14.patch +++ /dev/null @@ -1,23 +0,0 @@ -From f3bc38235bf39a630035920e29f2f883cae5fffe Mon Sep 17 00:00:00 2001 -From: Matti Picus <matti.picus@gmail.com> -Date: Sun, 26 May 2024 11:25:43 +0300 -Subject: [PATCH 1/3] BUG: cast missing in PyPy-specific f2py code - ---- - numpy/f2py/cb_rules.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/numpy/f2py/cb_rules.py b/numpy/f2py/cb_rules.py -index 721e075b6c73..faf8dd401301 100644 ---- a/numpy/f2py/cb_rules.py -+++ b/numpy/f2py/cb_rules.py -@@ -122,7 +122,7 @@ - #setdims# - #ifdef PYPY_VERSION - #define CAPI_ARGLIST_SETITEM(idx, value) PyList_SetItem((PyObject *)capi_arglist_list, idx, value) -- capi_arglist_list = PySequence_List(capi_arglist); -+ capi_arglist_list = PySequence_List((PyObject *)capi_arglist); - if (capi_arglist_list == NULL) goto capi_fail; - #else - #define CAPI_ARGLIST_SETITEM(idx, value) PyTuple_SetItem((PyObject *)capi_arglist, idx, value) - |
