summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-installer_0.6.0.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-12-28 08:36:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-28 23:59:55 +0000
commite20cf2149078ecf15ebe1402bf89b15c0c53a04b (patch)
treee970b0cc3c1687a3444e7c88fc36773a74a49d88 /meta/recipes-devtools/python/python3-installer_0.6.0.bb
parent25e2d493aa2617b056d6fb81e4a243f96386a0c2 (diff)
downloadpoky-e20cf2149078ecf15ebe1402bf89b15c0c53a04b.tar.gz
python3-installer: update 0.5.1 -> 0.6.0
(From OE-Core rev: b64d25d3e0e8f0b6a7e4b985d305519be4879073) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-installer_0.6.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-installer_0.6.0.bb28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-installer_0.6.0.bb b/meta/recipes-devtools/python/python3-installer_0.6.0.bb
new file mode 100644
index 0000000000..e728e47cec
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-installer_0.6.0.bb
@@ -0,0 +1,28 @@
1SUMMARY = "Library and tool for installing Python wheels"
2DESCRIPTION = "A low-level library for installing a Python package from a wheel distribution."
3HOMEPAGE = "https://installer.readthedocs.io/"
4BUGTRACKER = "https://github.com/pypa/installer/issues"
5
6LICENSE = "MIT"
7LIC_FILES_CHKSUM = "file://LICENSE;md5=5038641aec7a77451e31da828ebfae00"
8
9SRC_URI += "file://interpreter.patch"
10
11SRC_URI[sha256sum] = "f3bd36cd261b440a88a1190b1becca0578fee90b4b62decc796932fdd5ae8839"
12
13inherit pypi python_flit_core
14
15# Bootstrap the native build
16DEPENDS:remove:class-native = "python3-picobuild-native python3-installer-native"
17
18INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode"
19
20do_compile:class-native () {
21 python_flit_core_do_manual_build
22}
23
24do_install:prepend:class-native() {
25 export PYTHONPATH="${S}/src"
26}
27
28BBCLASSEXTEND = "native nativesdk"