summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2024-11-07 17:23:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-11-12 11:19:44 +0000
commit4eaae8c55e78e28238878e85f9f88cb7d3707303 (patch)
tree1370c9cea1980dc748b7fb749d77a67bf0ef70a7
parent2a8878ad79213a4026891ec568de535e49b22759 (diff)
downloadpoky-4eaae8c55e78e28238878e85f9f88cb7d3707303.tar.gz
python3-setuptools: add more comments to a patch
Add more explanatory comments, including when we can drop the patch. (From OE-Core rev: 15091ef668b544ceb881f8179c0c25c97afd3f5f) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch8
1 files changed, 5 insertions, 3 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch b/meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch
index e227c2889c..16b316e9cc 100644
--- a/meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch
+++ b/meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch
@@ -3,11 +3,13 @@ From: 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
5 5
6If var-NO_FETCH_BUILD is set, do not allow to fetch code from 6If NO_FETCH_BUILD is set, do not fetch code in easy_install. This avoids setup.py
7internet by easy_install. 7trying to fetch missing dependencies at build time.
8 8
9Upstream-Status: Inappropriate [oe specific] 9This is only used by the deprecated codepath as implemented by setuptools3.bbclass, so
10when that ever gets removed this patch can also be deleted.
10 11
12Upstream-Status: Denied [https://github.com/pypa/setuptools/issues/4735]
11Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> 13Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
12--- 14---
13 setuptools/command/easy_install.py | 5 +++++ 15 setuptools/command/easy_install.py | 5 +++++