mirror of
https://git.yoctoproject.org/poky
synced 2026-02-02 14:58:43 +01:00
Now that the bootstrap sequence for pypa/build is just python3-packaging, and python3-pyproject-hooks, we can use build instead of picobuild. The only change visible outside of this class is that the variable PEP517_PICOBUILD_OPTS is now PEP517_BUILD_OPTS, but I'm only aware of one recipe that used that variable. (From OE-Core rev: 202c2e3c9481a8841af2556862a76e27d703246d) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
576 B
BlitzBasic
20 lines
576 B
BlitzBasic
SUMMARY = "A low-level library for calling build-backends in pyproject.toml-based projects"
|
|
HOMEPAGE = "https://github.com/pypa/pyproject-hooks"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=aad69c93f605003e3342b174d9b0708c"
|
|
|
|
SRC_URI[sha256sum] = "f271b298b97f5955d53fb12b72c1fb1948c22c1a6b70b315c54cedaca0264ef5"
|
|
|
|
inherit pypi python_flit_core
|
|
|
|
PYPI_PACKAGE = "pyproject_hooks"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
# Bootstrap the native build
|
|
DEPENDS:remove:class-native = "python3-build-native"
|
|
|
|
do_compile:class-native () {
|
|
python_flit_core_do_manual_build
|
|
}
|