summaryrefslogtreecommitdiff
path: root/math/py-numpy/files/patch-numpy-f2py-f2py2e.py
diff options
context:
space:
mode:
authorWen Heping <wen@FreeBSD.org>2024-06-15 14:21:25 +0000
committerWen Heping <wen@FreeBSD.org>2024-06-15 14:23:11 +0000
commitd3e0e547ee3bfaa37aa10132d6fee0ed689333b6 (patch)
tree3f5554b9a1e593c54b80c9ab7ce0e0014fc8b99f /math/py-numpy/files/patch-numpy-f2py-f2py2e.py
parentmath/igraph: Update to 0.10.12 (diff)
math/py-numpy: Update to 1.26.4
PR: 277689 Reported by: wen@ Exp-run by: antoine@
Diffstat (limited to 'math/py-numpy/files/patch-numpy-f2py-f2py2e.py')
-rw-r--r--math/py-numpy/files/patch-numpy-f2py-f2py2e.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/math/py-numpy/files/patch-numpy-f2py-f2py2e.py b/math/py-numpy/files/patch-numpy-f2py-f2py2e.py
deleted file mode 100644
index 762edb7c74c7..000000000000
--- a/math/py-numpy/files/patch-numpy-f2py-f2py2e.py
+++ /dev/null
@@ -1,18 +0,0 @@
---- numpy/f2py/f2py2e.py.orig 2019-01-31 02:31:08 UTC
-+++ numpy/f2py/f2py2e.py
-@@ -599,6 +599,7 @@ def run_compile():
- include_dirs, sources = filter_files('-I', '', sources, remove_prefix=1)
- library_dirs, sources = filter_files('-L', '', sources, remove_prefix=1)
- libraries, sources = filter_files('-l', '', sources, remove_prefix=1)
-+ extra_link_args, sources = filter_files('-Wl,|-B|-f','',sources,remove_prefix=0)
- undef_macros, sources = filter_files('-U', '', sources, remove_prefix=1)
- define_macros, sources = filter_files('-D', '', sources, remove_prefix=1)
- for i in range(len(define_macros)):
-@@ -625,6 +626,7 @@ def run_compile():
- 'undef_macros': undef_macros,
- 'extra_objects': extra_objects,
- 'f2py_options': f2py_flags,
-+ 'extra_link_args': extra_link_args,
- }
-
- if sysinfo_flags: