summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-11-02 17:48:46 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-11-03 08:21:12 +0000
commit08ecc250b61843d321a644d8671c7ce0a6baed92 (patch)
tree43202a45a6c4bd4d77c0b244e21bfac52d729614 /meta/recipes-devtools/python
parentbcc2b20272064285cf782e0447b699dae218fc93 (diff)
downloadpoky-08ecc250b61843d321a644d8671c7ce0a6baed92.tar.gz
python3-setuptools: upgrade 49.6.0 -> 50.3.2
(From OE-Core rev: f563777a1db24665223de246375df35285ba780a) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r--meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch8
-rw-r--r--meta/recipes-devtools/python/python3-setuptools_50.3.2.bb (renamed from meta/recipes-devtools/python/python3-setuptools_49.6.0.bb)2
2 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
index ee0a9dbb13..99c50e94cb 100644
--- a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
+++ b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
@@ -1,4 +1,4 @@
1From 6a5086619ee1c4bcebc7df622face11de6679255 Mon Sep 17 00:00:00 2001 1From d2633b49275b20e7acf724567fe0189aab25771e Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com> 2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Tue, 17 Jul 2018 10:13:38 +0800 3Date: Tue, 17 Jul 2018 10:13:38 +0800
4Subject: [PATCH] conditionally do not fetch code by easy_install 4Subject: [PATCH] conditionally do not fetch code by easy_install
@@ -15,11 +15,11 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
15 1 file changed, 5 insertions(+) 15 1 file changed, 5 insertions(+)
16 16
17diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py 17diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
18index bcbd4f5..6455afd 100644 18index 9ec83b7..7e97a07 100644
19--- a/setuptools/command/easy_install.py 19--- a/setuptools/command/easy_install.py
20+++ b/setuptools/command/easy_install.py 20+++ b/setuptools/command/easy_install.py
21@@ -653,6 +653,11 @@ class easy_install(Command): 21@@ -636,6 +636,11 @@ class easy_install(Command):
22 os.path.exists(tmpdir) and rmtree(rmtree_safe(tmpdir)) 22 os.path.exists(tmpdir) and rmtree(tmpdir)
23 23
24 def easy_install(self, spec, deps=False): 24 def easy_install(self, spec, deps=False):
25+ if os.environ.get('NO_FETCH_BUILD', None): 25+ if os.environ.get('NO_FETCH_BUILD', None):
diff --git a/meta/recipes-devtools/python/python3-setuptools_49.6.0.bb b/meta/recipes-devtools/python/python3-setuptools_50.3.2.bb
index 360128b116..4480d56775 100644
--- a/meta/recipes-devtools/python/python3-setuptools_49.6.0.bb
+++ b/meta/recipes-devtools/python/python3-setuptools_50.3.2.bb
@@ -12,7 +12,7 @@ SRC_URI_append_class-native = " file://0001-conditionally-do-not-fetch-code-by-e
12 12
13SRC_URI += "file://0001-change-shebang-to-python3.patch" 13SRC_URI += "file://0001-change-shebang-to-python3.patch"
14 14
15SRC_URI[sha256sum] = "46bd862894ed22c2edff033c758c2dc026324788d758e96788e8f7c11f4e9707" 15SRC_URI[sha256sum] = "ed0519d27a243843b05d82a5e9d01b0b083d9934eaa3d02779a23da18077bd3c"
16 16
17DEPENDS += "${PYTHON_PN}" 17DEPENDS += "${PYTHON_PN}"
18 18