diff options
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 4b3f9631e2..fb37c78c78 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 | ||