diff options
| author | Tim Orling <ticotimo@gmail.com> | 2022-02-22 11:16:28 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-25 15:07:49 +0000 |
| commit | 2d1d8e91b2e6e670e1d64322b8333f6b77dbfcf6 (patch) | |
| tree | c47ebacbacf2ea4807b79eabd28e970db4d13501 /meta/recipes-devtools/python | |
| parent | 2a06ab3eb886d6981c42fd766ab2f2d6e89cdfd1 (diff) | |
| download | poky-2d1d8e91b2e6e670e1d64322b8333f6b77dbfcf6.tar.gz | |
python3-flit-core: add recipe for 3.6.0
This is the core of one of the "new build system" tools--hosted
officially as part of the pypa (Python Packaging Authority)
repositories--it is an increasingly common build tool (e.g.
typing_extensions and tomli) as declared in pyproject.toml for
said packages.
This package provides a very simple bootstrapping method that builds
the source tarball (build_sdist) and a wheel (build_wheel).
Bootstrap -native by simply unzipping the wheel to
PYTHON_SITEPACKAGES_DIR.
Use pip to install the wheel for class-target.
Wheels are the official vehicle for delivering Python packages now.
Eggs (egg-info) are deprecated and will increasingly go away.
[YOCTO #14638]
(From OE-Core rev: 18717181e4a893fd7c309eb75443a868ec4e83eb)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
| -rw-r--r-- | meta/recipes-devtools/python/python3-flit-core_3.6.0.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-flit-core_3.6.0.bb b/meta/recipes-devtools/python/python3-flit-core_3.6.0.bb new file mode 100644 index 0000000000..d0b88c3fa5 --- /dev/null +++ b/meta/recipes-devtools/python/python3-flit-core_3.6.0.bb | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | LICENSE = "BSD-3-Clause" | ||
| 2 | LIC_FILES_CHKSUM = "file://LICENSE;md5=41eb78fa8a872983a882c694a8305f08" | ||
| 3 | |||
| 4 | SRC_URI[sha256sum] = "b1464e006df4df4c8eeb37671c0e0ce66e1d04e4a36d91b702f180a25fde3c11" | ||
| 5 | |||
| 6 | inherit python3native python3-dir pypi setuptools3-base | ||
| 7 | |||
| 8 | DEPENDS:append:class-target = " python3-pip-native" | ||
| 9 | DEPENDS:append:class-native = " unzip-native" | ||
| 10 | |||
| 11 | # We need the full flit tarball | ||
| 12 | PYPI_PACKAGE = "flit" | ||
| 13 | |||
| 14 | do_compile () { | ||
| 15 | nativepython3 flit_core/build_dists.py | ||
| 16 | } | ||
| 17 | |||
| 18 | do_install () { | ||
| 19 | install -d ${D}${PYTHON_SITEPACKAGES_DIR} | ||
| 20 | PYTHONPATH=${D}${PYTHON_SITEPACKAGES_DIR} \ | ||
| 21 | nativepython3 -m pip install -vvvv --no-deps --no-index --target ${D}${PYTHON_SITEPACKAGES_DIR} ./flit_core/dist/flit_core-${PV}-py3-none-any.whl | ||
| 22 | } | ||
| 23 | |||
| 24 | do_install:class-native () { | ||
| 25 | install -d ${D}${PYTHON_SITEPACKAGES_DIR} | ||
| 26 | unzip -d ${D}${PYTHON_SITEPACKAGES_DIR} ./flit_core/dist/flit_core-${PV}-py3-none-any.whl | ||
| 27 | } | ||
| 28 | |||
| 29 | FILES:${PN} += "\ | ||
| 30 | ${PYTHON_SITEPACKAGES_DIR}/flit_core/* \ | ||
| 31 | ${PYTHON_SITEPACKAGES_DIR}/flit_core-${PV}.dist-info/* \ | ||
| 32 | " | ||
| 33 | |||
| 34 | PACKAGES =+ "${PN}-tests" | ||
| 35 | |||
| 36 | FILES:${PN}-tests += "\ | ||
| 37 | ${PYTHON_SITEPACKAGES_DIR}/flit_core/tests/* \ | ||
| 38 | " | ||
| 39 | |||
| 40 | BBCLASSEXTEND = "native nativesdk" | ||
| 41 | |||
