blob: 68b80a739255dbd0109b02bbae2ef2935a859e9b [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001SUMMARY = "Python Imaging Library (Fork). Pillow is the friendly PIL fork by Alex \
2Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and \
3Contributors."
4HOMEPAGE = "https://pillow.readthedocs.io"
5LICENSE = "MIT"
Andrew Geisslereef63862021-01-29 15:58:13 -06006LIC_FILES_CHKSUM = "file://LICENSE;md5=0337b116233da4616ae9fdb130bf6f1a"
Brad Bishop19323692019-04-05 15:28:33 -04007
Andrew Geissler69721092021-07-23 12:57:00 -04008SRC_URI = "git://github.com/python-pillow/Pillow.git;branch=8.3.x \
Brad Bishop19323692019-04-05 15:28:33 -04009 file://0001-support-cross-compiling.patch \
10 file://0001-explicitly-set-compile-options.patch \
11"
William A. Kennington III49e95662021-09-15 16:19:36 -070012SRCREV ?= "8013f130a5077b238a4346b73e149432b180a8ea"
Brad Bishop19323692019-04-05 15:28:33 -040013
14inherit setuptools3
15
16DEPENDS += " \
17 zlib \
18 jpeg \
19 tiff \
20 freetype \
21 lcms \
22 openjpeg \
23"
24
Patrick Williams213cb262021-08-07 19:21:33 -050025RDEPENDS:${PN} += " \
Brad Bishop26bdd442019-08-16 17:08:17 -040026 ${PYTHON_PN}-misc \
27 ${PYTHON_PN}-logging \
28 ${PYTHON_PN}-numbers \
29"
30
Brad Bishopc342db32019-05-15 21:57:59 -040031CVE_PRODUCT = "pillow"
32
Brad Bishop19323692019-04-05 15:28:33 -040033S = "${WORKDIR}/git"
34
Patrick Williams213cb262021-08-07 19:21:33 -050035RPROVIDES:${PN} += "python3-imaging"
Brad Bishop26bdd442019-08-16 17:08:17 -040036
Brad Bishop19323692019-04-05 15:28:33 -040037BBCLASSEXTEND = "native"