diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2020-04-06 11:31:49 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-04-06 08:29:49 -0700 |
commit | f58a6b6b788c6b8fd6275ba94ad1bd6b329dc480 (patch) | |
tree | de377d9951b642c7249e9da4c62d0aec322aa0f4 /meta-python | |
parent | 665b7360cbfc9b79c036c5946bdb5ad308604be1 (diff) | |
download | meta-openembedded-f58a6b6b788c6b8fd6275ba94ad1bd6b329dc480.tar.gz |
python-luma-core: add new recipe
Component library providing a Pillow-compatible drawing canvas,
and other functionality to support drawing primitives and
text-rendering capabilities for small displays on the Raspberry Pi
and other single board computers.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-luma-core_1.12.0.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-luma-core_1.12.0.bb b/meta-python/recipes-devtools/python/python3-luma-core_1.12.0.bb new file mode 100644 index 0000000000..cdb1ac8b98 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-luma-core_1.12.0.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | SUMMARY = "A component library to support SBC display drivers" | ||
2 | DESCRIPTION = "A component library to support SBC display drivers" | ||
3 | HOMEPAGE = "https://github.com/rm-hull/luma.core" | ||
4 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=eda804060ba2312e41fe96b6fa334fd7" | ||
6 | |||
7 | inherit pypi setuptools3 | ||
8 | |||
9 | SRC_URI[md5sum] = "4378edb99cd12540b4e4a588969567ee" | ||
10 | SRC_URI[sha256sum] = "864a427de78bcc16758f4f4402a9e61f31cc8857bfae9aba8041159aaec3a491" | ||
11 | |||
12 | CLEANBROKEN = "1" | ||
13 | |||
14 | PYPI_PACKAGE = "luma.core" | ||
15 | |||
16 | RDEPENDS_${PN} += " \ | ||
17 | ${PYTHON_PN}-pillow \ | ||
18 | ${PYTHON_PN}-threading \ | ||
19 | ${PYTHON_PN}-smbus2 \ | ||
20 | " | ||