diff options
author | Trevor Gamblin <tgamblin@baylibre.com> | 2024-07-17 11:59:48 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-07-18 17:21:39 +0100 |
commit | 18225f0baeacc93c2cc1bf65a61fb1a985769b9c (patch) | |
tree | 90a248bd01e2fda7091c5d6cec80e3ae38c96df9 | |
parent | 8dbeec7e04b1d05d53f3843c9639d040ae222c77 (diff) | |
download | poky-18225f0baeacc93c2cc1bf65a61fb1a985769b9c.tar.gz |
python3-setuptools: upgrade 69.5.1 -> 70.3.0
Refactor 0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch
to apply on the latest codebase.
Changelog: https://github.com/pypa/setuptools/blob/main/NEWS.rst
(From OE-Core rev: 8af6ba2a0a10f8d8995aab322d9f4cfbf1880228)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch | 17 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-setuptools_70.3.0.bb (renamed from meta/recipes-devtools/python/python3-setuptools_69.5.1.bb) | 2 |
2 files changed, 11 insertions, 8 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 0f6c9d250d..68dca43e21 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 @@ | |||
1 | From d393759315b189a738e4b6a2ce31dc18dbbfae29 Mon Sep 17 00:00:00 2001 | 1 | From a9f3483b492317959a35886308c31c078e350a35 Mon Sep 17 00:00:00 2001 |
2 | From: Alexander Kanavin <alex@linutronix.de> | 2 | From: Alexander Kanavin <alex@linutronix.de> |
3 | Date: Wed, 11 May 2022 21:41:14 +0200 | 3 | Date: Wed, 11 May 2022 21:41:14 +0200 |
4 | Subject: [PATCH] _distutils/sysconfig.py: make it possible to substite the | 4 | Subject: [PATCH] _distutils/sysconfig.py: make it possible to substite the |
@@ -20,19 +20,19 @@ 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 | ||
22 | diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py | 22 | diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py |
23 | index a40a723..14f35e7 100644 | 23 | index 7ebe67687..8039021a8 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 | @@ -119,6 +119,8 @@ def get_python_inc(plat_specific=0, prefix=None): | 26 | @@ -121,6 +121,8 @@ def get_python_inc(plat_specific=False, prefix=None): |
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 |
30 | + if os.environ.get('STAGING_INCDIR', ""): | 30 | + if os.environ.get('STAGING_INCDIR', ""): |
31 | + default_prefix = os.environ['STAGING_INCDIR'].rstrip('include') | 31 | + default_prefix = os.environ['STAGING_INCDIR'].rstrip('include') |
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 | try: | 33 | # MinGW imitates posix like layout, but os.name != posix |
34 | getter = globals()[f'_get_python_inc_{os.name}'] | 34 | os_name = "posix" if is_mingw() else os.name |
35 | @@ -238,7 +240,13 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None): | 35 | @@ -241,7 +243,13 @@ def get_python_lib(plat_specific=False, standard_lib=False, prefix=None): |
36 | 36 | ||
37 | early_prefix = prefix | 37 | early_prefix = prefix |
38 | 38 | ||
@@ -47,7 +47,7 @@ index a40a723..14f35e7 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 | @@ -253,7 +261,7 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None): | 50 | @@ -256,7 +264,7 @@ def get_python_lib(plat_specific=False, standard_lib=False, prefix=None): |
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' |
@@ -56,3 +56,6 @@ index a40a723..14f35e7 100644 | |||
56 | return _posix_lib(standard_lib, libpython, early_prefix, prefix) | 56 | return _posix_lib(standard_lib, libpython, early_prefix, prefix) |
57 | elif os.name == "nt": | 57 | elif os.name == "nt": |
58 | if standard_lib: | 58 | if standard_lib: |
59 | -- | ||
60 | 2.39.2 | ||
61 | |||
diff --git a/meta/recipes-devtools/python/python3-setuptools_69.5.1.bb b/meta/recipes-devtools/python/python3-setuptools_70.3.0.bb index cc6256db80..291601ca98 100644 --- a/meta/recipes-devtools/python/python3-setuptools_69.5.1.bb +++ b/meta/recipes-devtools/python/python3-setuptools_70.3.0.bb | |||
@@ -11,7 +11,7 @@ SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-e | |||
11 | SRC_URI += " \ | 11 | SRC_URI += " \ |
12 | file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch" | 12 | file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch" |
13 | 13 | ||
14 | SRC_URI[sha256sum] = "6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987" | 14 | SRC_URI[sha256sum] = "f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5" |
15 | 15 | ||
16 | DEPENDS += "python3" | 16 | DEPENDS += "python3" |
17 | 17 | ||