summaryrefslogtreecommitdiffstats
path: root/meta-python/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/classes')
-rw-r--r--meta-python/classes/poetry_core.bbclass20
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 @@
1inherit pip_install_wheel python3native python3-dir setuptools3-base 1inherit pip_install_wheel python3native setuptools3-base
2 2
3DEPENDS += "python3 python3-poetry-core-native python3-pip-native" 3DEPENDS += "python3-poetry-core-native"
4 4
5do_configure () { 5poetry_core_do_configure () {
6 mkdir -p ${S}/dist 6 :
7 cat > ${S}/build-it.py << EOF
8from poetry.core.masonry import api
9api.build_wheel('${S}/dist')
10EOF
11} 7}
12 8
13do_compile () { 9# TODO: ideally this uses pypa/build
14 ${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN} ${S}/build-it.py 10poetry_core_do_compile () {
11 nativepython3 -c "from poetry.core.masonry import api; api.build_wheel('${PIP_INSTALL_DIST_PATH}')"
15} 12}
13do_compile[cleandirs] += "${PIP_INSTALL_DIST_PATH}"
14
15EXPORT_FUNCTIONS do_configure do_compile