From 20758865e9e0598966a1c678fd4aebe384a99765 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 30 Jul 2025 17:03:33 +0100 Subject: [PATCH] classes/python_pdm: add PEP517 build class for PDM PDM[1] is yet another build/package manager for Python that is fairly common now, so add a class for it. Signed-off-by: Ross Burton [1] https://pdm-project.org/ Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- meta/classes-recipe/python_pdm.bbclass | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 meta/classes-recipe/python_pdm.bbclass diff --git a/meta/classes-recipe/python_pdm.bbclass b/meta/classes-recipe/python_pdm.bbclass new file mode 100644 index 0000000000..9a34d98422 --- /dev/null +++ b/meta/classes-recipe/python_pdm.bbclass @@ -0,0 +1,9 @@ +# +# Copyright OpenEmbedded Contributors +# +# SPDX-License-Identifier: MIT +# + +inherit python_pep517 + +DEPENDS += "python3-pdm-backend-native" -- 2.47.2