mirror of
https://git.yoctoproject.org/poky
synced 2026-02-03 23:38:44 +01:00
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>
33 lines
850 B
BlitzBasic
33 lines
850 B
BlitzBasic
SUMMARY = "A simple, correct PEP517 package builder"
|
|
HOMEPAGE = "https://github.com/pypa/build"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=310439af287b0fb4780b2ad6907c256c"
|
|
|
|
SRC_URI[sha256sum] = "d5b71264afdb5951d6704482aac78de887c80691c52b88a9ad195983ca2c9269"
|
|
|
|
inherit pypi python_flit_core
|
|
|
|
DEPENDS += "python3-pyproject-hooks-native"
|
|
|
|
DEPENDS:remove:class-native = "python3-build-native"
|
|
|
|
# Skip dependencies as we're doing a minimal build to bootstrap
|
|
PEP517_BUILD_OPTS:class-native = "--skip-dependency-check"
|
|
|
|
do_compile:prepend:class-native() {
|
|
export PYTHONPATH="${S}/src"
|
|
}
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-compression \
|
|
python3-difflib \
|
|
python3-ensurepip \
|
|
python3-logging \
|
|
python3-packaging \
|
|
python3-pyproject-hooks \
|
|
python3-tomllib \
|
|
python3-venv \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|