blob: 201e3570d6f660de795246ad8ddb013292b92c2b [file] [log] [blame]
Andrew Geissler475cb722020-07-10 16:00:51 -05001From 234c3da52da09b28db5b2c4d33ebe9c800c461ac Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Tue, 17 Jul 2018 10:13:38 +0800
4Subject: [PATCH] conditionally do not fetch code by easy_install
5
6If var-NO_FETCH_BUILD is set, do not allow to fetch code from
7internet by easy_install.
8
9Upstream-Status: Inappropriate [oe specific]
10
11Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Brad Bishop19323692019-04-05 15:28:33 -040012
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080013---
14 setuptools/command/easy_install.py | 5 +++++
15 1 file changed, 5 insertions(+)
16
17diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
Andrew Geissler475cb722020-07-10 16:00:51 -050018index 5a9576f..f5961cb 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080019--- a/setuptools/command/easy_install.py
20+++ b/setuptools/command/easy_install.py
Andrew Geissler475cb722020-07-10 16:00:51 -050021@@ -656,6 +656,11 @@ class easy_install(Command):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080022 os.path.exists(tmpdir) and rmtree(rmtree_safe(tmpdir))
23
24 def easy_install(self, spec, deps=False):
25+ if os.environ.get('NO_FETCH_BUILD', None):
26+ log.error("ERROR: Do not try to fetch `%s' for building. "
27+ "Please add its native recipe to DEPENDS." % spec)
28+ return None
29+
30 if not self.editable:
31 self.install_site_py()
32