From: Ross Burton Date: Wed, 30 Jul 2025 16:03:33 +0000 (+0100) Subject: classes/python_pdm: add PEP517 build class for PDM X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20758865e9e0598966a1c678fd4aebe384a99765;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- 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"