summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-01-12 11:23:35 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-13 17:32:46 +0000
commitadedac2b3392a86422c5b94fe0ec761304742a9e (patch)
tree8f2aeb7081739e9019a44a16b1e290ab1840d95f /meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb
parent1faf47e9e63bc6a136dccae938aa1ba5769d2857 (diff)
downloadpoky-adedac2b3392a86422c5b94fe0ec761304742a9e.tar.gz
python_pep517: use python3-build, not picobuild
Now that the bootstrap sequence for pypa/build is just python3-packaging, and python3-pyproject-hooks, we can use build instead of picobuild. The only change visible outside of this class is that the variable PEP517_PICOBUILD_OPTS is now PEP517_BUILD_OPTS, but I'm only aware of one recipe that used that variable. (From OE-Core rev: 202c2e3c9481a8841af2556862a76e27d703246d) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb b/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb
index 10d8225c3d..9aca5918ec 100644
--- a/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb
+++ b/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb
@@ -10,3 +10,10 @@ inherit pypi python_flit_core
10PYPI_PACKAGE = "pyproject_hooks" 10PYPI_PACKAGE = "pyproject_hooks"
11 11
12BBCLASSEXTEND = "native nativesdk" 12BBCLASSEXTEND = "native nativesdk"
13
14# Bootstrap the native build
15DEPENDS:remove:class-native = "python3-build-native"
16
17do_compile:class-native () {
18 python_flit_core_do_manual_build
19}