summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2018-03-08 20:18:01 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-03-09 09:17:04 -0800
commite5f5aa5604a7617af839832ded457c8a824bcf2f (patch)
tree00e727d032b3abaaf545d07c578d80e415abfd79 /meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch
parentd1d088db2879f1fefeebda0da815c1138fa52256 (diff)
downloadpoky-e5f5aa5604a7617af839832ded457c8a824bcf2f.tar.gz
python-numpy: update to 1.14.1
Drop backported 0001-BUG-fix-infinite-loop-when-creating-np.pad-on-an-emp.patch. Drop 0001-BUG-fix-infinite-loop-when-creating-np.pad-on-an-emp.patch as upstream is using os.path.basename() instead now. License-Update: License.txt file was update to list licenses of individual components; not all of them are 3-clause BSD. (From OE-Core rev: c70d1c07e4e697156bd49c43e2cc800f3085b182) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch')
-rw-r--r--meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch b/meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch
deleted file mode 100644
index eb8a71a2e2..0000000000
--- a/meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From c560abff71f98a39a7401f08c2c13dad9ae7f15f Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Thu, 25 Feb 2016 01:23:32 -0500
4Subject: [PATCH] remove build path in comments
5
6It has build path in comments, so remove it.
7
8Upstream-Status: Inappropriate [openembedded specific]
9
10Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
11---
12 numpy/distutils/misc_util.py | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py
16index 345e60f..dafb068 100644
17--- a/numpy/distutils/misc_util.py
18+++ b/numpy/distutils/misc_util.py
19@@ -2254,7 +2254,7 @@ def generate_config_py(target):
20 from distutils.dir_util import mkpath
21 mkpath(os.path.dirname(target))
22 f = open(target, 'w')
23- f.write('# This file is generated by %s\n' % (os.path.abspath(sys.argv[0])))
24+ f.write('# This file is generated by %s\n' % (os.path.abspath(sys.argv[0]).replace(os.path.abspath('../'),'')))
25 f.write('# It contains system_info results at the time of building this package.\n')
26 f.write('__all__ = ["get_info","show"]\n\n')
27 for k, i in system_info.saved_results.items():
28--
291.9.1
30