summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r--meta-python/recipes-devtools/python/python3-pillow/0001-explicitly-set-compile-options.patch40
-rw-r--r--meta-python/recipes-devtools/python/python3-pillow_10.3.0.bb (renamed from meta-python/recipes-devtools/python/python3-pillow_10.1.0.bb)24
2 files changed, 18 insertions, 46 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pillow/0001-explicitly-set-compile-options.patch b/meta-python/recipes-devtools/python/python3-pillow/0001-explicitly-set-compile-options.patch
deleted file mode 100644
index 005fea5c66..0000000000
--- a/meta-python/recipes-devtools/python/python3-pillow/0001-explicitly-set-compile-options.patch
+++ /dev/null
@@ -1,40 +0,0 @@
1From 27bfa4028453dc79a72569823e97da8fd1994ffc Mon Sep 17 00:00:00 2001
2From: Leon Anavi <leon.anavi@konsulko.com>
3Date: Tue, 1 Sep 2020 11:53:53 +0000
4Subject: [PATCH] explicitly set compile options
5
6OE does not support to install egg package, so
7explicitly set build_ext options for oe-core's
8`setup.py install'
9
10Upstream-Status: Inappropriate [oe specific]
11
12Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
13Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
14---
15 setup.cfg | 12 ++++++++++++
16 1 file changed, 12 insertions(+)
17
18diff --git a/setup.cfg b/setup.cfg
19index 19979cf7..ed27dfe1 100644
20--- a/setup.cfg
21+++ b/setup.cfg
22@@ -11,3 +11,15 @@ multi_line_output = 3
23 [tool:pytest]
24 addopts = -ra --color=yes
25 testpaths = Tests
26+
27+[build_ext]
28+disable-platform-guessing = 1
29+enable-zlib = 1
30+enable-jpeg = 1
31+enable-tiff = 1
32+enable-freetype = 1
33+enable-lcms = 1
34+enable-jpeg2000 = 1
35+disable-webp = 1
36+disable-webpmux = 1
37+disable-imagequant = 1
38--
392.17.1
40
diff --git a/meta-python/recipes-devtools/python/python3-pillow_10.1.0.bb b/meta-python/recipes-devtools/python/python3-pillow_10.3.0.bb
index e795bd4916..debf488154 100644
--- a/meta-python/recipes-devtools/python/python3-pillow_10.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pillow_10.3.0.bb
@@ -3,16 +3,28 @@ Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and \
3Contributors." 3Contributors."
4HOMEPAGE = "https://pillow.readthedocs.io" 4HOMEPAGE = "https://pillow.readthedocs.io"
5LICENSE = "MIT" 5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=b22dc6b663b9175820e5e03337c7596b" 6LIC_FILES_CHKSUM = "file://LICENSE;md5=c349a4b4b9ec2377a8fd6a7df87dbffe"
7 7
8SRC_URI = "git://github.com/python-pillow/Pillow.git;branch=main;protocol=https \ 8SRC_URI = "git://github.com/python-pillow/Pillow.git;branch=main;protocol=https \
9 file://0001-support-cross-compiling.patch \ 9 file://0001-support-cross-compiling.patch \
10 file://0001-explicitly-set-compile-options.patch \
11 file://run-ptest \ 10 file://run-ptest \
12 " 11 "
13SRCREV ?= "da59ad000d1405eaecd557175e29083a87d19f7c" 12SRCREV = "5c89d88eee199ba53f64581ea39b6a1bc52feb1a"
14 13
15inherit setuptools3 ptest 14inherit python_setuptools_build_meta ptest
15
16PEP517_BUILD_OPTS += " \
17 -C platform-guessing=disable \
18 -C zlib=enable \
19 -C jpeg=enable \
20 -C tiff=enable \
21 -C freetype=enable \
22 -C lcms=enable \
23 -C jpeg2000=enable \
24 -C webp=disable \
25 -C webpmux=disable \
26 -C imagequant=disable \
27"
16 28
17DEPENDS += " \ 29DEPENDS += " \
18 zlib \ 30 zlib \
@@ -53,8 +65,8 @@ S = "${WORKDIR}/git"
53RPROVIDES:${PN} += "python3-imaging" 65RPROVIDES:${PN} += "python3-imaging"
54 66
55do_install_ptest() { 67do_install_ptest() {
56 install -d ${D}${PTEST_PATH}/Tests 68 install -d ${D}${PTEST_PATH}/Tests
57 cp -rf ${S}/Tests ${D}${PTEST_PATH}/ 69 cp -rf ${S}/Tests ${D}${PTEST_PATH}/
58} 70}
59 71
60BBCLASSEXTEND = "native" 72BBCLASSEXTEND = "native"