From: Ross Burton Date: Tue, 8 Mar 2022 14:30:32 +0000 (+0000) Subject: setuptools_build_meta: respect PIP_INSTALL_DIST_PATH X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~4893 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a3625c576afe823efc50dc0b1071e4952339f8e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git setuptools_build_meta: respect PIP_INSTALL_DIST_PATH 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. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/classes/setuptools_build_meta.bbclass b/meta/classes/setuptools_build_meta.bbclass index 0651cca0a07..18ae2e60044 100644 --- a/meta/classes/setuptools_build_meta.bbclass +++ b/meta/classes/setuptools_build_meta.bbclass @@ -8,8 +8,8 @@ setuptools_build_meta_do_configure () { # TODO: ideally this uses pypa/build setuptools_build_meta_do_compile () { - mkdir -p ${S}/dist - nativepython3 -c "from setuptools import build_meta; build_meta.build_wheel('./dist')" + nativepython3 -c "from setuptools import build_meta; build_meta.build_wheel('${PIP_INSTALL_DIST_PATH}')" } +do_compile[cleandirs] += "${PIP_INSTALL_DIST_PATH}" EXPORT_FUNCTIONS do_configure do_compile