From: "Zoltán Böszörményi" <zboszor@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: "Khem Raj" <raj.khem@gmail.com>,
"Bartosz Golaszewski" <brgl@kernel.org>,
"Trevor Gamblin" <tgamblin@baylibre.com>,
"Alexander Kanavin" <alex.kanavin@gmail.com>,
"Zoltán Böszörményi" <zboszor@gmail.com>
Subject: [PATCH v3 02/12] python3-dir.bbclass: Move PYTHON_ABI into PYTHON_DIR
Date: Fri, 27 Mar 2026 09:30:45 +0100 [thread overview]
Message-ID: <20260327083055.12571-2-zboszor@gmail.com> (raw)
In-Reply-To: <20260327083055.12571-1-zboszor@gmail.com>
PYTHON_DIR is now suffixed with PYTHON_ABI.
Python build helper classes and the python build modules
use PYTHON_DIR internally, some of them do not care about
the ABI flag. So it's important that the destination
directory is set correctly.
This will also allow fixing recipes that may or may not have
been using PYTHON_ABI consistently, since it was set to an
empty string.
Also added a new variable called PYTHON_MAINVERSION which
is a combination of PYTHON_BASEVERSION and PYTHON_ABI.
Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com>
---
meta/classes-recipe/python3-dir.bbclass | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta/classes-recipe/python3-dir.bbclass b/meta/classes-recipe/python3-dir.bbclass
index 3eb0dea9b2..f3ad0a2d91 100644
--- a/meta/classes-recipe/python3-dir.bbclass
+++ b/meta/classes-recipe/python3-dir.bbclass
@@ -6,6 +6,7 @@
PYTHON_BASEVERSION = "3.14"
PYTHON_ABI = ""
-PYTHON_DIR = "python${PYTHON_BASEVERSION}"
+PYTHON_MAINVERSION = "${PYTHON_BASEVERSION}${PYTHON_ABI}"
+PYTHON_DIR = "python${PYTHON_MAINVERSION}"
PYTHON_PN = "python3"
PYTHON_SITEPACKAGES_DIR = "${libdir}/${PYTHON_DIR}/site-packages"
--
2.53.0
next prev parent reply other threads:[~2026-03-27 8:31 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <18A06529173E9998.57592@lists.openembedded.org>
2026-03-26 14:30 ` [PATCH v2 01/12] python3: Add warning comment before PACKAGECONFIG[freethreading] Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 02/12] python3-dir.bbclass: Move PYTHON_ABI into PYTHON_DIR Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 03/12] python3: Use the variables from python3-dir.bbclass Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 04/12] python3native.bbclass: Stop using PYTHON_ABI Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 05/12] python_pyo3.bbclass: Pass ABI flag and use PYTHON_MAINVERSION Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 06/12] clang: Use PYTHON_MAINVERSION for python module versioning Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 07/12] gdb, gdb-cross-canadian: Stop using PYTHON_ABI Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 08/12] boost: " Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 09/12] lttng-tools: " Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 10/12] lttng-ust: " Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 11/12] libcap-ng-python: Use PYTHON_DIR for FILES Zoltán Böszörményi
2026-03-26 14:30 ` [PATCH v2 12/12] hwlatdetect: Use PYTHON_DIR Zoltán Böszörményi
2026-03-27 8:37 ` [OE-core] [PATCH v2 01/12] python3: Add warning comment before PACKAGECONFIG[freethreading] Mathieu Dubois-Briand
2026-03-27 9:17 ` Böszörményi Zoltán
2026-03-27 8:30 ` [PATCH v3 " Zoltán Böszörményi
2026-03-27 8:30 ` Zoltán Böszörményi [this message]
2026-03-27 8:30 ` [PATCH v3 03/12] python3: Use the variables from python3-dir.bbclass Zoltán Böszörményi
2026-03-27 8:30 ` [PATCH v3 04/12] python3native.bbclass: Stop using PYTHON_ABI Zoltán Böszörményi
2026-03-27 8:30 ` [PATCH v3 05/12] python_pyo3.bbclass: Pass ABI flag and use PYTHON_MAINVERSION Zoltán Böszörményi
2026-03-27 8:30 ` [PATCH v3 06/12] clang: Use PYTHON_MAINVERSION for python module versioning Zoltán Böszörményi
2026-03-27 8:30 ` [PATCH v3 07/12] gdb, gdb-cross-canadian: Stop using PYTHON_ABI Zoltán Böszörményi
2026-03-27 8:30 ` [PATCH v3 08/12] boost: " Zoltán Böszörményi
2026-03-27 8:30 ` [PATCH v3 09/12] lttng-tools: " Zoltán Böszörményi
2026-03-28 7:57 ` [OE-core] " Mathieu Dubois-Briand
2026-03-28 8:56 ` Böszörményi Zoltán
2026-03-29 17:52 ` Mathieu Dubois-Briand
2026-04-06 12:35 ` Böszörményi Zoltán
2026-03-27 8:30 ` [PATCH v3 10/12] lttng-ust: " Zoltán Böszörményi
2026-03-27 8:30 ` [PATCH v3 11/12] libcap-ng-python: Use PYTHON_DIR for FILES Zoltán Böszörményi
2026-03-27 8:30 ` [PATCH v3 12/12] hwlatdetect: Use PYTHON_DIR Zoltán Böszörményi
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=20260327083055.12571-2-zboszor@gmail.com \
--to=zboszor@gmail.com \
--cc=alex.kanavin@gmail.com \
--cc=brgl@kernel.org \
--cc=openembedded-core@lists.openembedded.org \
--cc=raj.khem@gmail.com \
--cc=tgamblin@baylibre.com \
/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