diff options
| author | Ross Burton <ross.burton@arm.com> | 2025-07-30 17:03:33 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-04 18:04:03 +0100 |
| commit | b1e50dae49841f058e6d8616750cfa0e14d10a5c (patch) | |
| tree | 2cca90adaf4ee2418d4924cf4241b28e7b9eb2f7 | |
| parent | da54ae012621f5e33487ff77d1c420942a393a9d (diff) | |
| download | poky-b1e50dae49841f058e6d8616750cfa0e14d10a5c.tar.gz | |
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.
(From OE-Core rev: 20758865e9e0598966a1c678fd4aebe384a99765)
Signed-off-by: Ross Burton <ross.burton@arm.com>
[1] https://pdm-project.org/
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/classes-recipe/python_pdm.bbclass | 9 |
1 files changed, 9 insertions, 0 deletions
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 @@ | |||
| 1 | # | ||
| 2 | # Copyright OpenEmbedded Contributors | ||
| 3 | # | ||
| 4 | # SPDX-License-Identifier: MIT | ||
| 5 | # | ||
| 6 | |||
| 7 | inherit python_pep517 | ||
| 8 | |||
| 9 | DEPENDS += "python3-pdm-backend-native" | ||
