summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-04-01 09:32:20 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-04-03 11:06:20 +0100
commit01ec3c557d0f27d4ab93632797279438a49305ab (patch)
tree0d3e9d01a346a6930b2f5829fb42350b0b732b13 /meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch
parentebe9f2f974a12e4c8f817d9bb90e07480e018426 (diff)
downloadpoky-01ec3c557d0f27d4ab93632797279438a49305ab.tar.gz
python3-setuptools: upgrade 76.0.0 -> 78.1.0
(From OE-Core rev: d2b9b8cb7ffe9af455972e9ad28d4e93f4602911) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch')
-rw-r--r--meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch b/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch
index e2fd53e039..8ccffeef1d 100644
--- a/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch
+++ b/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch
@@ -1,4 +1,4 @@
1From 801b64480490e99c5eb062401149d1f1a945e8f8 Mon Sep 17 00:00:00 2001 1From c3d2c40e10f24724ab2e3d5f236823f3076c7aec Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de> 2From: Alexander Kanavin <alex@linutronix.de>
3Date: Wed, 11 May 2022 21:41:14 +0200 3Date: Wed, 11 May 2022 21:41:14 +0200
4Subject: [PATCH] _distutils/sysconfig.py: make it possible to substite the 4Subject: [PATCH] _distutils/sysconfig.py: make it possible to substite the
@@ -20,10 +20,10 @@ Signed-off-by: Alexander Kanavin <alex@linutronix.de>
20 1 file changed, 10 insertions(+), 2 deletions(-) 20 1 file changed, 10 insertions(+), 2 deletions(-)
21 21
22diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py 22diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py
23index ef3def8..577d320 100644 23index e5facae..0932f6f 100644
24--- a/setuptools/_distutils/sysconfig.py 24--- a/setuptools/_distutils/sysconfig.py
25+++ b/setuptools/_distutils/sysconfig.py 25+++ b/setuptools/_distutils/sysconfig.py
26@@ -122,6 +122,8 @@ def get_python_inc(plat_specific=False, prefix=None): 26@@ -134,6 +134,8 @@ def get_python_inc(plat_specific: bool = False, prefix: str | None = None) -> st
27 sys.base_exec_prefix -- i.e., ignore 'plat_specific'. 27 sys.base_exec_prefix -- i.e., ignore 'plat_specific'.
28 """ 28 """
29 default_prefix = BASE_EXEC_PREFIX if plat_specific else BASE_PREFIX 29 default_prefix = BASE_EXEC_PREFIX if plat_specific else BASE_PREFIX
@@ -32,7 +32,7 @@ index ef3def8..577d320 100644
32 resolved_prefix = prefix if prefix is not None else default_prefix 32 resolved_prefix = prefix if prefix is not None else default_prefix
33 # MinGW imitates posix like layout, but os.name != posix 33 # MinGW imitates posix like layout, but os.name != posix
34 os_name = "posix" if is_mingw() else os.name 34 os_name = "posix" if is_mingw() else os.name
35@@ -242,7 +244,13 @@ def get_python_lib(plat_specific=False, standard_lib=False, prefix=None): 35@@ -256,7 +258,13 @@ def get_python_lib(
36 36
37 early_prefix = prefix 37 early_prefix = prefix
38 38
@@ -47,7 +47,7 @@ index ef3def8..577d320 100644
47 if standard_lib: 47 if standard_lib:
48 prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX 48 prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
49 else: 49 else:
50@@ -257,7 +265,7 @@ def get_python_lib(plat_specific=False, standard_lib=False, prefix=None): 50@@ -271,7 +279,7 @@ def get_python_lib(
51 # Pure Python 51 # Pure Python
52 libdir = "lib" 52 libdir = "lib"
53 implementation = 'pypy' if IS_PYPY else 'python' 53 implementation = 'pypy' if IS_PYPY else 'python'