diff options
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 | |||
