summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>2023-04-13 11:15:57 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-04-14 16:44:24 +0100
commitff633ce7a7ffc0d39b86043caeb63a9ffcef99b8 (patch)
tree9d3959c55fef907700f2ac75e091e7706457fea9 /meta/recipes-devtools
parenta3ff0f2d4b74f913f58ed58861f1d82f2b55a6ec (diff)
downloadpoky-ff633ce7a7ffc0d39b86043caeb63a9ffcef99b8.tar.gz
python3-build: add missing run-time dependencies
python3-build has several run-time dependencies that are missing from the recipe. This makes it impossible to use the module in self-hosted images. Add missing RDEPENDS. (From OE-Core rev: f4a4de1dc3521695c14dfc206fa4cd0e10c250aa) Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/python/python3-build_0.10.0.bb11
1 files changed, 10 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3-build_0.10.0.bb b/meta/recipes-devtools/python/python3-build_0.10.0.bb
index 770a32023d..b446fa391d 100644
--- a/meta/recipes-devtools/python/python3-build_0.10.0.bb
+++ b/meta/recipes-devtools/python/python3-build_0.10.0.bb
@@ -18,6 +18,15 @@ do_compile:prepend:class-native() {
18 export PYTHONPATH="${S}/src" 18 export PYTHONPATH="${S}/src"
19} 19}
20 20
21RDEPENDS:${PN} += "python3-packaging python3-pyproject-hooks" 21RDEPENDS:${PN} += " \
22 python3-compression \
23 python3-difflib \
24 python3-ensurepip \
25 python3-logging \
26 python3-packaging \
27 python3-pyproject-hooks \
28 python3-tomllib \
29 python3-venv \
30"
22 31
23BBCLASSEXTEND = "native nativesdk" 32BBCLASSEXTEND = "native nativesdk"