summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python-numpy/files
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-03-02 10:10:12 -0800
committerKhem Raj <raj.khem@gmail.com>2020-03-02 10:10:35 -0800
commit349dc7483d2ee91532a31a9854f4a74b8b7a1ace (patch)
tree07c0c1cb7b9a83aff60c01aef34f0f81f1ee5b14 /meta-python/recipes-devtools/python-numpy/files
parent72e77866bfcc708a53c9cdbcadc0b1ea97c8368c (diff)
downloadmeta-openembedded-349dc7483d2ee91532a31a9854f4a74b8b7a1ace.tar.gz
Revert "python3-numpy: add from oe-core"
This reverts commit 24d6260ea0ebe808939fdd0b396ef5f6cf355596.
Diffstat (limited to 'meta-python/recipes-devtools/python-numpy/files')
-rw-r--r--meta-python/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch70
-rw-r--r--meta-python/recipes-devtools/python-numpy/files/0001-numpy-random-setup.py-remove-the-detection-of-x86-ta.patch32
2 files changed, 0 insertions, 102 deletions
diff --git a/meta-python/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch b/meta-python/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
deleted file mode 100644
index 98a9705831..0000000000
--- a/meta-python/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
+++ /dev/null
@@ -1,70 +0,0 @@
1From 672a75c8417ce08db9e31fc415ec445479231d5a Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Thu, 10 Dec 2015 13:20:30 +0200
4Subject: [PATCH] Don't search /usr and so on for libraries by default to
5
6 avoid host contamination.
7
8Upstream-Status: Inappropriate (As the code stands, this is a hack)
9Signed-off-by: Ross Burton <ross.burton@intel.com>
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11
12---
13 numpy/distutils/system_info.py | 42 ++++------------------------------
14 1 file changed, 5 insertions(+), 37 deletions(-)
15
16diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py
17index ba2b1f4..f94dce1 100644
18--- a/numpy/distutils/system_info.py
19+++ b/numpy/distutils/system_info.py
20@@ -278,45 +278,13 @@ if sys.platform == 'win32':
21 add_system_root(os.path.join(conda_dir, 'Library'))
22
23 else:
24- default_lib_dirs = libpaths(['/usr/local/lib', '/opt/lib', '/usr/lib',
25- '/opt/local/lib', '/sw/lib'], platform_bits)
26 default_runtime_dirs = []
27- default_include_dirs = ['/usr/local/include',
28- '/opt/include', '/usr/include',
29- # path of umfpack under macports
30- '/opt/local/include/ufsparse',
31- '/opt/local/include', '/sw/include',
32- '/usr/include/suitesparse']
33- default_src_dirs = ['.', '/usr/local/src', '/opt/src', '/sw/src']
34-
35- default_x11_lib_dirs = libpaths(['/usr/X11R6/lib', '/usr/X11/lib',
36- '/usr/lib'], platform_bits)
37- default_x11_include_dirs = ['/usr/X11R6/include', '/usr/X11/include',
38- '/usr/include']
39-
40- if os.path.exists('/usr/lib/X11'):
41- globbed_x11_dir = glob('/usr/lib/*/libX11.so')
42- if globbed_x11_dir:
43- x11_so_dir = os.path.split(globbed_x11_dir[0])[0]
44- default_x11_lib_dirs.extend([x11_so_dir, '/usr/lib/X11'])
45- default_x11_include_dirs.extend(['/usr/lib/X11/include',
46- '/usr/include/X11'])
47-
48- with open(os.devnull, 'w') as tmp:
49- try:
50- p = subprocess.Popen(["gcc", "-print-multiarch"], stdout=subprocess.PIPE,
51- stderr=tmp)
52- except (OSError, DistutilsError):
53- # OSError if gcc is not installed, or SandboxViolation (DistutilsError
54- # subclass) if an old setuptools bug is triggered (see gh-3160).
55- pass
56- else:
57- triplet = str(p.communicate()[0].decode().strip())
58- if p.returncode == 0:
59- # gcc supports the "-print-multiarch" option
60- default_x11_lib_dirs += [os.path.join("/usr/lib/", triplet)]
61- default_lib_dirs += [os.path.join("/usr/lib/", triplet)]
62+ default_lib_dirs = libpaths(['/deadir/lib'], platform_bits)
63+ default_include_dirs = ['/deaddir/include']
64+ default_src_dirs = ['.', '/deaddir/src']
65
66+ default_x11_lib_dirs = libpaths(['/deaddir/lib'], platform_bits)
67+ default_x11_include_dirs = ['/deaddir/include']
68
69 if os.path.join(sys.prefix, 'lib') not in default_lib_dirs:
70 default_lib_dirs.insert(0, os.path.join(sys.prefix, 'lib'))
diff --git a/meta-python/recipes-devtools/python-numpy/files/0001-numpy-random-setup.py-remove-the-detection-of-x86-ta.patch b/meta-python/recipes-devtools/python-numpy/files/0001-numpy-random-setup.py-remove-the-detection-of-x86-ta.patch
deleted file mode 100644
index 9da6a2b3da..0000000000
--- a/meta-python/recipes-devtools/python-numpy/files/0001-numpy-random-setup.py-remove-the-detection-of-x86-ta.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From b881e0b2ba9cf1a4aa351a1c1ea90b1e1776ce21 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Mon, 12 Aug 2019 15:37:36 +0200
4Subject: [PATCH] numpy/random/setup.py: remove the detection of x86 targets
5 via uname()
6
7This was badly breaking compilation for ARM targets (and possibly
8other non-x86 targets); if -msse2 is desirable for x86 builds it has
9to be passed through another channel.
10
11Upstream-Status: Inappropriate [oe-core specific]
12Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
13---
14 numpy/random/setup.py | 5 -----
15 1 file changed, 5 deletions(-)
16
17diff --git a/numpy/random/setup.py b/numpy/random/setup.py
18index a1bf3b8..60fb534 100644
19--- a/numpy/random/setup.py
20+++ b/numpy/random/setup.py
21@@ -49,11 +49,6 @@ def configuration(parent_package='', top_path=None):
22 elif not is_msvc:
23 # Some bit generators require c99
24 EXTRA_COMPILE_ARGS += ['-std=c99']
25- INTEL_LIKE = any(arch in platform.machine()
26- for arch in ('x86', 'i686', 'i386', 'amd64'))
27- if INTEL_LIKE:
28- # Assumes GCC or GCC-like compiler
29- EXTRA_COMPILE_ARGS += ['-msse2']
30
31 # Use legacy integer variable sizes
32 LEGACY_DEFS = [('NP_RANDOM_LEGACY', '1')]