diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-05-18 12:57:57 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-20 22:52:22 +0100 |
commit | 6343a4168482183ac6b73a3e7045ef5b55df0e8e (patch) | |
tree | 4d8233cb1839dd4d48c110c213cd6df758a3e99c /meta | |
parent | ff5bead3bc13a9bf534f722ff24d6d93696a2284 (diff) | |
download | poky-6343a4168482183ac6b73a3e7045ef5b55df0e8e.tar.gz |
python3-setuptools: upgrade 59.5.0 -> 62.3.1
This was held by numpy rejecting setuptools >= 60.x,
however it got a workaround in recent point releases
and so the upgrade can proceed.
Drop 0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch
as changed code completely removed upstream.
Replicate another distutils/sysconfig.py fix from python recipe via
0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch
Add a tomli build dependency to python3-setuptools-scm as new
setuptools exposes:
| File "/srv/work/alex/poky/build-64-alt/tmp/work/x86_64-linux/python3-setuptools-scm-native/6.4.2-r0/setuptools_scm-6.4.2/src/setuptools_scm/config.py", line 59, in _lazy_tomli_load
| from tomli import loads
| ModuleNotFoundError: No module named 'tomli'
(From OE-Core rev: 0907866325fbfb5774e1a3f0ba0cf110d9b9b663)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch | 6 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-setuptools-scm_6.4.2.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch | 35 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch | 60 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-setuptools_62.3.1.bb (renamed from meta/recipes-devtools/python/python3-setuptools_59.5.0.bb) | 8 |
5 files changed, 68 insertions, 43 deletions
diff --git a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch index 5e2ee454da..a2b7a519af 100644 --- a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch +++ b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From da88c57fe03e4474ba20325edacf519e80c1d7a8 Mon Sep 17 00:00:00 2001 | 1 | From d1b4fa4a99774878035a0f664ec0d9686e7f0c89 Mon Sep 17 00:00:00 2001 |
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
3 | Date: Tue, 17 Jul 2018 10:13:38 +0800 | 3 | Date: Tue, 17 Jul 2018 10:13:38 +0800 |
4 | Subject: [PATCH] conditionally do not fetch code by easy_install | 4 | Subject: [PATCH] conditionally do not fetch code by easy_install |
@@ -15,10 +15,10 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | |||
15 | 1 file changed, 5 insertions(+) | 15 | 1 file changed, 5 insertions(+) |
16 | 16 | ||
17 | diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py | 17 | diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py |
18 | index fc848d0..c04a5de 100644 | 18 | index 444d3b3..61e445a 100644 |
19 | --- a/setuptools/command/easy_install.py | 19 | --- a/setuptools/command/easy_install.py |
20 | +++ b/setuptools/command/easy_install.py | 20 | +++ b/setuptools/command/easy_install.py |
21 | @@ -642,6 +642,11 @@ class easy_install(Command): | 21 | @@ -648,6 +648,11 @@ class easy_install(Command): |
22 | os.path.exists(tmpdir) and rmtree(tmpdir) | 22 | os.path.exists(tmpdir) and rmtree(tmpdir) |
23 | 23 | ||
24 | def easy_install(self, spec, deps=False): | 24 | def easy_install(self, spec, deps=False): |
diff --git a/meta/recipes-devtools/python/python3-setuptools-scm_6.4.2.bb b/meta/recipes-devtools/python/python3-setuptools-scm_6.4.2.bb index e09c598bf5..9aaae071d3 100644 --- a/meta/recipes-devtools/python/python3-setuptools-scm_6.4.2.bb +++ b/meta/recipes-devtools/python/python3-setuptools-scm_6.4.2.bb | |||
@@ -11,6 +11,8 @@ inherit pypi python_setuptools_build_meta | |||
11 | 11 | ||
12 | UPSTREAM_CHECK_REGEX = "setuptools_scm-(?P<pver>.*)\.tar" | 12 | UPSTREAM_CHECK_REGEX = "setuptools_scm-(?P<pver>.*)\.tar" |
13 | 13 | ||
14 | DEPENDS += "python3-tomli-native" | ||
15 | |||
14 | RDEPENDS:${PN} = "\ | 16 | RDEPENDS:${PN} = "\ |
15 | ${PYTHON_PN}-packaging \ | 17 | ${PYTHON_PN}-packaging \ |
16 | ${PYTHON_PN}-pyparsing \ | 18 | ${PYTHON_PN}-pyparsing \ |
diff --git a/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch b/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch deleted file mode 100644 index 3150187951..0000000000 --- a/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | From 1ff575308248b183639c8cb14afee7c8572bd2b8 Mon Sep 17 00:00:00 2001 | ||
2 | From: Tim Orling <timothy.t.orling@intel.com> | ||
3 | Date: Wed, 20 Oct 2021 17:38:10 +0000 | ||
4 | Subject: [PATCH] _distutils/sysconfig: append | ||
5 | STAGING_LIBDIR/python-sysconfigdata to sys.path | ||
6 | |||
7 | When python modules set SETUPTOOLS_USE_DISTULS='local', this uses the | ||
8 | vendored _distutils in setuptools rather than distutils in the Standard | ||
9 | Library. This is needed so that target configuration can be used with | ||
10 | python3-setuptools-native. | ||
11 | |||
12 | Based on python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch | ||
13 | from Alex Kanavin <alex.kanavin@gmail.com> | ||
14 | |||
15 | Upstream-Status: Inappropriate [oe-specific] | ||
16 | |||
17 | Signed-off-by: Tim Orling <timothy.t.orling@intel.com> | ||
18 | |||
19 | --- | ||
20 | setuptools/_distutils/sysconfig.py | 2 ++ | ||
21 | 1 file changed, 2 insertions(+) | ||
22 | |||
23 | diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py | ||
24 | index d36d94f..616eb91 100644 | ||
25 | --- a/setuptools/_distutils/sysconfig.py | ||
26 | +++ b/setuptools/_distutils/sysconfig.py | ||
27 | @@ -484,6 +484,8 @@ def _init_posix(): | ||
28 | multiarch=getattr(sys.implementation, '_multiarch', ''), | ||
29 | ), | ||
30 | ) | ||
31 | + if 'STAGING_LIBDIR' in os.environ: | ||
32 | + sys.path.append(os.environ['STAGING_LIBDIR']+'/python-sysconfigdata') | ||
33 | try: | ||
34 | _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0) | ||
35 | except ImportError: | ||
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 new file mode 100644 index 0000000000..c1b3dd6a30 --- /dev/null +++ b/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch | |||
@@ -0,0 +1,60 @@ | |||
1 | From 41f78746cbe88d263400ee948abef5b3f89cce29 Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex@linutronix.de> | ||
3 | Date: Wed, 11 May 2022 21:41:14 +0200 | ||
4 | Subject: [PATCH] _distutils/sysconfig.py: make it possible to substite the | ||
5 | prefix to target sysroot | ||
6 | |||
7 | This is done by probing STAGING_INCDIR/STAGING_LIBDIRenv vars: | ||
8 | not the most elegant solution, but distutils/sysconfig has been | ||
9 | tweaked to do this for many, many year, and so it's easiest | ||
10 | to replicate here as well, the original is | ||
11 | meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch | ||
12 | |||
13 | I'm not sure exactly why setuptools now needs a copy, and what | ||
14 | would happen to this module in light of distutils deprecation. | ||
15 | |||
16 | Upstream-Status: Inappropriate [oe-core specific] | ||
17 | Signed-off-by: Alexander Kanavin <alex@linutronix.de> | ||
18 | --- | ||
19 | setuptools/_distutils/sysconfig.py | 14 +++++++++++--- | ||
20 | 1 file changed, 11 insertions(+), 3 deletions(-) | ||
21 | |||
22 | diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py | ||
23 | index 55a42e1..ead63b9 100644 | ||
24 | --- a/setuptools/_distutils/sysconfig.py | ||
25 | +++ b/setuptools/_distutils/sysconfig.py | ||
26 | @@ -102,7 +102,9 @@ def get_python_inc(plat_specific=0, prefix=None): | ||
27 | If 'prefix' is supplied, use it instead of sys.base_prefix or | ||
28 | sys.base_exec_prefix -- i.e., ignore 'plat_specific'. | ||
29 | """ | ||
30 | - if prefix is None: | ||
31 | + if prefix is None and os.environ.get('STAGING_INCDIR', ""): | ||
32 | + prefix = os.environ['STAGING_INCDIR'].rstrip('include') | ||
33 | + elif prefix is None: | ||
34 | prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX | ||
35 | if os.name == "posix": | ||
36 | if IS_PYPY and sys.version_info < (3, 8): | ||
37 | @@ -167,7 +169,13 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None): | ||
38 | |||
39 | early_prefix = prefix | ||
40 | |||
41 | - if prefix is None: | ||
42 | + if os.environ.get('STAGING_LIBDIR', ""): | ||
43 | + lib_basename = os.environ['STAGING_LIBDIR'].split('/')[-1] | ||
44 | + else: | ||
45 | + lib_basename = "lib" | ||
46 | + if prefix is None and os.environ.get('STAGING_LIBDIR', ""): | ||
47 | + prefix = os.environ['STAGING_LIBDIR'].rstrip(lib_basename) | ||
48 | + elif prefix is None: | ||
49 | if standard_lib: | ||
50 | prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX | ||
51 | else: | ||
52 | @@ -182,7 +190,7 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None): | ||
53 | # Pure Python | ||
54 | libdir = "lib" | ||
55 | implementation = 'pypy' if IS_PYPY else 'python' | ||
56 | - libpython = os.path.join(prefix, libdir, | ||
57 | + libpython = os.path.join(prefix, lib_basename, | ||
58 | implementation + get_python_version()) | ||
59 | return _posix_lib(standard_lib, libpython, early_prefix, prefix) | ||
60 | elif os.name == "nt": | ||
diff --git a/meta/recipes-devtools/python/python3-setuptools_59.5.0.bb b/meta/recipes-devtools/python/python3-setuptools_62.3.1.bb index f2810e18d3..c9367c180f 100644 --- a/meta/recipes-devtools/python/python3-setuptools_59.5.0.bb +++ b/meta/recipes-devtools/python/python3-setuptools_62.3.1.bb | |||
@@ -8,12 +8,10 @@ inherit pypi python_setuptools_build_meta | |||
8 | 8 | ||
9 | SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch" | 9 | SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch" |
10 | 10 | ||
11 | SRC_URI += "\ | 11 | SRC_URI += "file://0001-change-shebang-to-python3.patch \ |
12 | file://0001-change-shebang-to-python3.patch \ | 12 | file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch" |
13 | file://0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch \ | ||
14 | " | ||
15 | 13 | ||
16 | SRC_URI[sha256sum] = "d144f85102f999444d06f9c0e8c737fd0194f10f2f7e5fdb77573f6e2fa4fad0" | 14 | SRC_URI[sha256sum] = "28c79c24d83c42a5e6d6cc711e5e9a6c1b89326229feaa5807fc277040658600" |
17 | 15 | ||
18 | DEPENDS += "${PYTHON_PN}" | 16 | DEPENDS += "${PYTHON_PN}" |
19 | 17 | ||