mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
flit_core: add variable to control where pyproject.toml is located
The PEP517[1] pyproject.toml doesn't have to be located at the top-level of the source tree (for example, in recipes with multiple components), so add a variable PEP517_SOURCE_PATH to set where the file is. In the future there should be a pep517.bbclass to centralise the common logic, but for now this can be defined in each of the relevant classes. [1] https://www.python.org/dev/peps/pep-0517/ (From OE-Core rev: f85b512e2ad39ec32f11f9b25b8c92bea20c844d) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d2655729bc
commit
2df212ff6c
@@ -6,8 +6,12 @@ flit_core_do_configure () {
|
|||||||
:
|
:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Where to execute the build process from
|
||||||
|
PEP517_SOURCE_PATH ?= "${S}"
|
||||||
|
|
||||||
# TODO: ideally this uses pypa/build
|
# TODO: ideally this uses pypa/build
|
||||||
flit_core_do_compile () {
|
flit_core_do_compile () {
|
||||||
|
cd ${PEP517_SOURCE_PATH}
|
||||||
nativepython3 -mflit_core.wheel --outdir ${PIP_INSTALL_DIST_PATH}
|
nativepython3 -mflit_core.wheel --outdir ${PIP_INSTALL_DIST_PATH}
|
||||||
}
|
}
|
||||||
do_compile[cleandirs] += "${PIP_INSTALL_DIST_PATH}"
|
do_compile[cleandirs] += "${PIP_INSTALL_DIST_PATH}"
|
||||||
|
|||||||
Reference in New Issue
Block a user