summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r--meta/recipes-devtools/python/python3-flit-core_3.6.0.bb41
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 @@
1LICENSE = "BSD-3-Clause"
2LIC_FILES_CHKSUM = "file://LICENSE;md5=41eb78fa8a872983a882c694a8305f08"
3
4SRC_URI[sha256sum] = "b1464e006df4df4c8eeb37671c0e0ce66e1d04e4a36d91b702f180a25fde3c11"
5
6inherit python3native python3-dir pypi setuptools3-base
7
8DEPENDS:append:class-target = " python3-pip-native"
9DEPENDS:append:class-native = " unzip-native"
10
11# We need the full flit tarball
12PYPI_PACKAGE = "flit"
13
14do_compile () {
15 nativepython3 flit_core/build_dists.py
16}
17
18do_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
24do_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
29FILES:${PN} += "\
30 ${PYTHON_SITEPACKAGES_DIR}/flit_core/* \
31 ${PYTHON_SITEPACKAGES_DIR}/flit_core-${PV}.dist-info/* \
32"
33
34PACKAGES =+ "${PN}-tests"
35
36FILES:${PN}-tests += "\
37 ${PYTHON_SITEPACKAGES_DIR}/flit_core/tests/* \
38"
39
40BBCLASSEXTEND = "native nativesdk"
41