]> code.ossystems Code Review - openembedded-core.git/commitdiff
flit_core: respect PIP_INSTALL_DIST_PATH
authorRoss Burton <ross@burtonini.com>
Tue, 8 Mar 2022 14:30:30 +0000 (14:30 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 9 Mar 2022 11:46:23 +0000 (11:46 +0000)
pip_install_wheel expects the wheels to be in PIP_INSTALL_DIST_PATH but
this class was writing to the same directory through chance not design.

Respect PIP_INSTALL_DIST_PATH as the output directory, and use
[cleandirs] to ensure that it exists and is empty.

Also call the flit_core.wheel module directly as this is a public entry
point to the wheel building logic.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/flit_core.bbclass

index a7667795febbfebd856f84626ad8bce5881c6028..3481bb50890c4f443ce74c569661f4e07761b238 100644 (file)
@@ -8,8 +8,8 @@ flit_core_do_configure () {
 
 # TODO: ideally this uses pypa/build
 flit_core_do_compile () {
-    mkdir -p ${S}/dist
-    nativepython3 -c "from flit_core import buildapi; buildapi.build_wheel('./dist')"
+    nativepython3 -mflit_core.wheel --outdir ${PIP_INSTALL_DIST_PATH}
 }
+do_compile[cleandirs] += "${PIP_INSTALL_DIST_PATH}"
 
 EXPORT_FUNCTIONS do_configure do_compile