From: Alexander Kanavin <alex.kanavin@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: Alexander Kanavin <alex@linutronix.de>
Subject: [PATCH 03/49] python3-setuptools: upgrade 59.5.0 -> 62.3.1
Date: Wed, 18 May 2022 12:57:57 +0200 [thread overview]
Message-ID: <20220518105843.3299331-3-alex@linutronix.de> (raw)
In-Reply-To: <20220518105843.3299331-1-alex@linutronix.de>
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'
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
...ly-do-not-fetch-code-by-easy_install.patch | 6 +-
.../python/python3-setuptools-scm_6.4.2.bb | 2 +
...nfig-append-STAGING_LIBDIR-python-sy.patch | 35 -----------
...nfig.py-make-it-possible-to-substite.patch | 60 +++++++++++++++++++
...59.5.0.bb => python3-setuptools_62.3.1.bb} | 8 +--
5 files changed, 68 insertions(+), 43 deletions(-)
delete mode 100644 meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch
create mode 100644 meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch
rename meta/recipes-devtools/python/{python3-setuptools_59.5.0.bb => python3-setuptools_62.3.1.bb} (87%)
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 @@
-From da88c57fe03e4474ba20325edacf519e80c1d7a8 Mon Sep 17 00:00:00 2001
+From d1b4fa4a99774878035a0f664ec0d9686e7f0c89 Mon Sep 17 00:00:00 2001
From: Hongxu Jia <hongxu.jia@windriver.com>
Date: Tue, 17 Jul 2018 10:13:38 +0800
Subject: [PATCH] conditionally do not fetch code by easy_install
@@ -15,10 +15,10 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
1 file changed, 5 insertions(+)
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
-index fc848d0..c04a5de 100644
+index 444d3b3..61e445a 100644
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
-@@ -642,6 +642,11 @@ class easy_install(Command):
+@@ -648,6 +648,11 @@ class easy_install(Command):
os.path.exists(tmpdir) and rmtree(tmpdir)
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
UPSTREAM_CHECK_REGEX = "setuptools_scm-(?P<pver>.*)\.tar"
+DEPENDS += "python3-tomli-native"
+
RDEPENDS:${PN} = "\
${PYTHON_PN}-packaging \
${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 @@
-From 1ff575308248b183639c8cb14afee7c8572bd2b8 Mon Sep 17 00:00:00 2001
-From: Tim Orling <timothy.t.orling@intel.com>
-Date: Wed, 20 Oct 2021 17:38:10 +0000
-Subject: [PATCH] _distutils/sysconfig: append
- STAGING_LIBDIR/python-sysconfigdata to sys.path
-
-When python modules set SETUPTOOLS_USE_DISTULS='local', this uses the
-vendored _distutils in setuptools rather than distutils in the Standard
-Library. This is needed so that target configuration can be used with
-python3-setuptools-native.
-
-Based on python3/0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch
-from Alex Kanavin <alex.kanavin@gmail.com>
-
-Upstream-Status: Inappropriate [oe-specific]
-
-Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
-
----
- setuptools/_distutils/sysconfig.py | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py
-index d36d94f..616eb91 100644
---- a/setuptools/_distutils/sysconfig.py
-+++ b/setuptools/_distutils/sysconfig.py
-@@ -484,6 +484,8 @@ def _init_posix():
- multiarch=getattr(sys.implementation, '_multiarch', ''),
- ),
- )
-+ if 'STAGING_LIBDIR' in os.environ:
-+ sys.path.append(os.environ['STAGING_LIBDIR']+'/python-sysconfigdata')
- try:
- _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
- 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 @@
+From 41f78746cbe88d263400ee948abef5b3f89cce29 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex@linutronix.de>
+Date: Wed, 11 May 2022 21:41:14 +0200
+Subject: [PATCH] _distutils/sysconfig.py: make it possible to substite the
+ prefix to target sysroot
+
+This is done by probing STAGING_INCDIR/STAGING_LIBDIRenv vars:
+not the most elegant solution, but distutils/sysconfig has been
+tweaked to do this for many, many year, and so it's easiest
+to replicate here as well, the original is
+meta/recipes-devtools/python/python3/12-distutils-prefix-is-inside-staging-area.patch
+
+I'm not sure exactly why setuptools now needs a copy, and what
+would happen to this module in light of distutils deprecation.
+
+Upstream-Status: Inappropriate [oe-core specific]
+Signed-off-by: Alexander Kanavin <alex@linutronix.de>
+---
+ setuptools/_distutils/sysconfig.py | 14 +++++++++++---
+ 1 file changed, 11 insertions(+), 3 deletions(-)
+
+diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py
+index 55a42e1..ead63b9 100644
+--- a/setuptools/_distutils/sysconfig.py
++++ b/setuptools/_distutils/sysconfig.py
+@@ -102,7 +102,9 @@ def get_python_inc(plat_specific=0, prefix=None):
+ If 'prefix' is supplied, use it instead of sys.base_prefix or
+ sys.base_exec_prefix -- i.e., ignore 'plat_specific'.
+ """
+- if prefix is None:
++ if prefix is None and os.environ.get('STAGING_INCDIR', ""):
++ prefix = os.environ['STAGING_INCDIR'].rstrip('include')
++ elif prefix is None:
+ prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
+ if os.name == "posix":
+ if IS_PYPY and sys.version_info < (3, 8):
+@@ -167,7 +169,13 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
+
+ early_prefix = prefix
+
+- if prefix is None:
++ if os.environ.get('STAGING_LIBDIR', ""):
++ lib_basename = os.environ['STAGING_LIBDIR'].split('/')[-1]
++ else:
++ lib_basename = "lib"
++ if prefix is None and os.environ.get('STAGING_LIBDIR', ""):
++ prefix = os.environ['STAGING_LIBDIR'].rstrip(lib_basename)
++ elif prefix is None:
+ if standard_lib:
+ prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
+ else:
+@@ -182,7 +190,7 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
+ # Pure Python
+ libdir = "lib"
+ implementation = 'pypy' if IS_PYPY else 'python'
+- libpython = os.path.join(prefix, libdir,
++ libpython = os.path.join(prefix, lib_basename,
+ implementation + get_python_version())
+ return _posix_lib(standard_lib, libpython, early_prefix, prefix)
+ 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
similarity index 87%
rename from meta/recipes-devtools/python/python3-setuptools_59.5.0.bb
rename to 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
SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch"
-SRC_URI += "\
- file://0001-change-shebang-to-python3.patch \
- file://0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch \
-"
+SRC_URI += "file://0001-change-shebang-to-python3.patch \
+ file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch"
-SRC_URI[sha256sum] = "d144f85102f999444d06f9c0e8c737fd0194f10f2f7e5fdb77573f6e2fa4fad0"
+SRC_URI[sha256sum] = "28c79c24d83c42a5e6d6cc711e5e9a6c1b89326229feaa5807fc277040658600"
DEPENDS += "${PYTHON_PN}"
--
2.30.2
next prev parent reply other threads:[~2022-05-18 10:58 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-18 10:57 [PATCH 01/49] sato: work around missing icons in adwaita 42.0 Alexander Kanavin
2022-05-18 10:57 ` [PATCH 02/49] adwaita-icon-theme: upgrade 41.0 -> 42.0 Alexander Kanavin
2022-05-18 10:57 ` Alexander Kanavin [this message]
2022-05-18 10:57 ` [PATCH 04/49] go: upgrade 1.18.1 -> 1.18.2 Alexander Kanavin
2022-05-18 10:57 ` [PATCH 05/49] iptables: upgrade 1.8.7 -> 1.8.8 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 06/49] gnu-config: update to latest version Alexander Kanavin
2022-05-18 10:58 ` [PATCH 07/49] u-boot: upgrade 2022.01 -> 2022.04 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 08/49] python3-pip: update 22.0.4 -> 22.1 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 09/49] libxcb: update 1.14 -> 1.15 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 10/49] xcb-proto: upgrade 1.14.1 " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 11/49] systemtap: update 4.6 -> 4.7 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 12/49] vulkan-samples: update to latest revision Alexander Kanavin
2022-05-18 10:58 ` [PATCH 13/49] curl: upgrade 7.83.0 -> 7.83.1 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 14/49] diffoscope: upgrade 211 -> 212 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 15/49] git: upgrade 2.36.0 -> 2.36.1 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 16/49] gnutls: upgrade 3.7.4 -> 3.7.5 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 17/49] gst-devtools: upgrade 1.20.1 -> 1.20.2 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 18/49] gstreamer1.0-libav: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 19/49] gstreamer1.0-omx: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 20/49] gstreamer1.0-plugins-bad: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 21/49] gstreamer1.0-plugins-base: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 22/49] gstreamer1.0-plugins-good: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 23/49] gstreamer1.0-plugins-ugly: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 24/49] gstreamer1.0-python: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 25/49] gstreamer1.0-rtsp-server: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 26/49] gstreamer1.0: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 27/49] gstreamer1.0-vaapi: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 28/49] libcgroup: upgrade 2.0.1 -> 2.0.2 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 29/49] libnotify: upgrade 0.7.11 -> 0.7.12 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 30/49] librepo: upgrade 1.14.2 -> 1.14.3 Alexander Kanavin
2022-05-18 15:09 ` [OE-core] " Luca Ceresoli
2022-05-18 16:49 ` Alexander Kanavin
2022-05-18 10:58 ` [PATCH 31/49] librsvg: upgrade 2.54.1 -> 2.54.3 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 32/49] mesa: upgrade 22.0.2 -> 22.0.3 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 33/49] mobile-broadband-provider-info: upgrade 20220315 -> 20220511 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 34/49] piglit: upgrade to latest revision Alexander Kanavin
2022-05-18 10:58 ` [PATCH 35/49] psmisc: upgrade 23.4 -> 23.5 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 36/49] python3-bcrypt: upgrade 3.2.0 -> 3.2.2 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 37/49] python3-cryptography: upgrade 37.0.1 -> 37.0.2 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 38/49] python3-cryptography-vectors: " Alexander Kanavin
2022-05-18 10:58 ` [PATCH 39/49] python3-hypothesis: upgrade 6.46.0 -> 6.46.4 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 40/49] python3-jsonschema: upgrade 4.4.0 -> 4.5.1 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 41/49] python3-markdown: upgrade 3.3.6 -> 3.3.7 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 42/49] python3-more-itertools: upgrade 8.12.0 -> 8.13.0 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 43/49] python3-pbr: upgrade 5.8.1 -> 5.9.0 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 44/49] python3-pyparsing: upgrade 3.0.8 -> 3.0.9 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 45/49] repo: upgrade 2.24.1 -> 2.25 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 46/49] sqlite3: upgrade 3.38.3 -> 3.38.5 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 47/49] stress-ng: upgrade 0.14.00 -> 0.14.01 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 48/49] python3-setuptools-rust: update 1.1.2 -> 1.3.0 Alexander Kanavin
2022-05-18 10:58 ` [PATCH 49/49] python3: use built-in distutils for ptest, rather than setuptools' 'fork' Alexander Kanavin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220518105843.3299331-3-alex@linutronix.de \
--to=alex.kanavin@gmail.com \
--cc=alex@linutronix.de \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox