diff options
author | Ross Burton <ross.burton@arm.com> | 2022-03-08 19:42:28 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-03-10 07:31:21 -0800 |
commit | 62af27a57ae2c0368469a559b85c3873b7859551 (patch) | |
tree | 8fcbe5536ee081efc31b17fcb8f34d22c2cb0b83 /meta-python/classes | |
parent | 10e9b26163e0efcdea1cd90f2cfba4672dcbee83 (diff) | |
download | meta-openembedded-62af27a57ae2c0368469a559b85c3873b7859551.tar.gz |
poetry-core: clean up class
There's been a lot of work on this class so clean it up a bit.
Rationalise imports, python3-dir is already included in python3native.
Don't write a helper script in do_configure, just call the API in
do_compile. In the long term this should be using pypa/build instead
of calling the API directly.
Stub out do_configure as the base configure isn't useful.
Write the wheel to PIP_INSTALL_DIST_PATH instead of hard-coding S/dist,
and clean it.
Use EXPORT_FUNCTIONS on the tasks.
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/classes')
-rw-r--r-- | meta-python/classes/poetry_core.bbclass | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/meta-python/classes/poetry_core.bbclass b/meta-python/classes/poetry_core.bbclass index 4b3f9631e..fb37c78c7 100644 --- a/meta-python/classes/poetry_core.bbclass +++ b/meta-python/classes/poetry_core.bbclass | |||
@@ -1,15 +1,15 @@ | |||
1 | inherit pip_install_wheel python3native python3-dir setuptools3-base | 1 | inherit pip_install_wheel python3native setuptools3-base |
2 | 2 | ||
3 | DEPENDS += "python3 python3-poetry-core-native python3-pip-native" | 3 | DEPENDS += "python3-poetry-core-native" |
4 | 4 | ||
5 | do_configure () { | 5 | poetry_core_do_configure () { |
6 | mkdir -p ${S}/dist | 6 | : |
7 | cat > ${S}/build-it.py << EOF | ||
8 | from poetry.core.masonry import api | ||
9 | api.build_wheel('${S}/dist') | ||
10 | EOF | ||
11 | } | 7 | } |
12 | 8 | ||
13 | do_compile () { | 9 | # TODO: ideally this uses pypa/build |
14 | ${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN} ${S}/build-it.py | 10 | poetry_core_do_compile () { |
11 | nativepython3 -c "from poetry.core.masonry import api; api.build_wheel('${PIP_INSTALL_DIST_PATH}')" | ||
15 | } | 12 | } |
13 | do_compile[cleandirs] += "${PIP_INSTALL_DIST_PATH}" | ||
14 | |||
15 | EXPORT_FUNCTIONS do_configure do_compile | ||