blob: 0f6c9d250d1a745fd5978871f49b8dd4471e3086 [file] [log] [blame]
Patrick Williamsb58112e2024-03-07 11:16:36 -06001From d393759315b189a738e4b6a2ce31dc18dbbfae29 Mon Sep 17 00:00:00 2001
Andrew Geisslerd5838332022-05-27 11:33:10 -05002From: Alexander Kanavin <alex@linutronix.de>
3Date: Wed, 11 May 2022 21:41:14 +0200
4Subject: [PATCH] _distutils/sysconfig.py: make it possible to substite the
5 prefix to target sysroot
6
7This is done by probing STAGING_INCDIR/STAGING_LIBDIRenv vars:
8not the most elegant solution, but distutils/sysconfig has been
9tweaked to do this for many, many year, and so it's easiest
10to replicate here as well, the original is
11meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch
12
13I'm not sure exactly why setuptools now needs a copy, and what
14would happen to this module in light of distutils deprecation.
15
16Upstream-Status: Inappropriate [oe-core specific]
17Signed-off-by: Alexander Kanavin <alex@linutronix.de>
18---
Andrew Geissler615f2f12022-07-15 14:00:58 -050019 setuptools/_distutils/sysconfig.py | 12 ++++++++++--
20 1 file changed, 10 insertions(+), 2 deletions(-)
Andrew Geisslerd5838332022-05-27 11:33:10 -050021
22diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py
Patrick Williams169d7bc2024-01-05 11:33:25 -060023index a40a723..14f35e7 100644
Andrew Geisslerd5838332022-05-27 11:33:10 -050024--- a/setuptools/_distutils/sysconfig.py
25+++ b/setuptools/_distutils/sysconfig.py
Andrew Geissler615f2f12022-07-15 14:00:58 -050026@@ -119,6 +119,8 @@ def get_python_inc(plat_specific=0, prefix=None):
Andrew Geisslerd5838332022-05-27 11:33:10 -050027 sys.base_exec_prefix -- i.e., ignore 'plat_specific'.
28 """
Andrew Geissler615f2f12022-07-15 14:00:58 -050029 default_prefix = BASE_EXEC_PREFIX if plat_specific else BASE_PREFIX
30+ if os.environ.get('STAGING_INCDIR', ""):
31+ default_prefix = os.environ['STAGING_INCDIR'].rstrip('include')
32 resolved_prefix = prefix if prefix is not None else default_prefix
33 try:
34 getter = globals()[f'_get_python_inc_{os.name}']
Patrick Williams169d7bc2024-01-05 11:33:25 -060035@@ -238,7 +240,13 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
Andrew Geisslerd5838332022-05-27 11:33:10 -050036
37 early_prefix = prefix
38
39- if prefix is None:
40+ if os.environ.get('STAGING_LIBDIR', ""):
41+ lib_basename = os.environ['STAGING_LIBDIR'].split('/')[-1]
42+ else:
43+ lib_basename = "lib"
44+ if prefix is None and os.environ.get('STAGING_LIBDIR', ""):
45+ prefix = os.environ['STAGING_LIBDIR'].rstrip(lib_basename)
46+ elif prefix is None:
47 if standard_lib:
48 prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
49 else:
Patrick Williams169d7bc2024-01-05 11:33:25 -060050@@ -253,7 +261,7 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
Andrew Geisslerd5838332022-05-27 11:33:10 -050051 # Pure Python
52 libdir = "lib"
53 implementation = 'pypy' if IS_PYPY else 'python'
Andrew Geissler615f2f12022-07-15 14:00:58 -050054- libpython = os.path.join(prefix, libdir, implementation + get_python_version())
55+ libpython = os.path.join(prefix, lib_basename, implementation + get_python_version())
Andrew Geisslerd5838332022-05-27 11:33:10 -050056 return _posix_lib(standard_lib, libpython, early_prefix, prefix)
57 elif os.name == "nt":
Andrew Geissler615f2f12022-07-15 14:00:58 -050058 if standard_lib: