mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 11:28:58 +00:00
classes/python_pep517: add more comments
Remove mention of prebuilt wheels, this is for the full PEP517 build process and recipes that want to install prebuilt wheels can use pypa/installer directly. (From OE-Core rev: d42664a5b5fb460185be996428dbaba6bb81ec3f) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
49fe9edcde
commit
0f31b46827
@@ -1,5 +1,8 @@
|
||||
# Common infrastructure for Python packages that use PEP-517 compliant packaging.
|
||||
# https://www.python.org/dev/peps/pep-0517/
|
||||
#
|
||||
# This class will build a wheel in do_compile, and use pypa/installer to install
|
||||
# it in do_install.
|
||||
|
||||
DEPENDS:append = " python3-installer-native"
|
||||
|
||||
@@ -9,14 +12,14 @@ PEP517_SOURCE_PATH ?= "${S}"
|
||||
# The PEP517 build API entry point
|
||||
PEP517_BUILD_API ?= "unset"
|
||||
|
||||
# The directory where wheels should be written too. Build classes
|
||||
# will ideally [cleandirs] this but we don't do that here in case
|
||||
# a recipe wants to install prebuilt wheels.
|
||||
# The directory where wheels will be written
|
||||
PEP517_WHEEL_PATH ?= "${WORKDIR}/dist"
|
||||
|
||||
# The interpreter to use for installed scripts
|
||||
PEP517_INSTALL_PYTHON = "python3"
|
||||
PEP517_INSTALL_PYTHON:class-native = "nativepython3"
|
||||
|
||||
# pypa/installer option to control the bytecode compilation
|
||||
INSTALL_WHEEL_COMPILE_BYTECODE ?= "--compile-bytecode=0"
|
||||
|
||||
# When we have Python 3.11 we can parse pyproject.toml to determine the build
|
||||
|
||||
Reference in New Issue
Block a user