diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-12-28 08:36:59 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-28 23:59:55 +0000 |
| commit | e20cf2149078ecf15ebe1402bf89b15c0c53a04b (patch) | |
| tree | e970b0cc3c1687a3444e7c88fc36773a74a49d88 /meta/recipes-devtools/python/python3-installer_0.6.0.bb | |
| parent | 25e2d493aa2617b056d6fb81e4a243f96386a0c2 (diff) | |
| download | poky-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.bb | 28 |
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 @@ | |||
| 1 | SUMMARY = "Library and tool for installing Python wheels" | ||
| 2 | DESCRIPTION = "A low-level library for installing a Python package from a wheel distribution." | ||
| 3 | HOMEPAGE = "https://installer.readthedocs.io/" | ||
| 4 | BUGTRACKER = "https://github.com/pypa/installer/issues" | ||
| 5 | |||
| 6 | LICENSE = "MIT" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5038641aec7a77451e31da828ebfae00" | ||
| 8 | |||
| 9 | SRC_URI += "file://interpreter.patch" | ||
| 10 | |||
| 11 | SRC_URI[sha256sum] = "f3bd36cd261b440a88a1190b1becca0578fee90b4b62decc796932fdd5ae8839" | ||
| 12 | |||
| 13 | inherit pypi python_flit_core | ||
| 14 | |||
| 15 | # Bootstrap the native build | ||
| 16 | DEPENDS:remove:class-native = "python3-picobuild-native python3-installer-native" | ||
| 17 | |||
| 18 | INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode" | ||
| 19 | |||
| 20 | do_compile:class-native () { | ||
| 21 | python_flit_core_do_manual_build | ||
| 22 | } | ||
| 23 | |||
| 24 | do_install:prepend:class-native() { | ||
| 25 | export PYTHONPATH="${S}/src" | ||
| 26 | } | ||
| 27 | |||
| 28 | BBCLASSEXTEND = "native nativesdk" | ||
