Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/
Date: Fri, 15 Oct 2021 21:07:44
Message-Id: 1634332055.8e890ddf5ada851023416bdf0670eca8b064ea6b.mgorny@gentoo
1 commit: 8e890ddf5ada851023416bdf0670eca8b064ea6b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 15 20:35:44 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 15 21:07:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e890ddf
7
8 dev-python/pillow: Bump to 8.4.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pillow/Manifest | 1 +
13 dev-python/pillow/pillow-8.4.0.ebuild | 98 +++++++++++++++++++++++++++++++++++
14 2 files changed, 99 insertions(+)
15
16 diff --git a/dev-python/pillow/Manifest b/dev-python/pillow/Manifest
17 index db526aeefee..769b0a8374b 100644
18 --- a/dev-python/pillow/Manifest
19 +++ b/dev-python/pillow/Manifest
20 @@ -2,3 +2,4 @@ DIST pillow-8.2.0.tar.gz 47898485 BLAKE2B bd8421a101e0be080f2fab238c3c26a4e1e722
21 DIST pillow-8.3.0.tar.gz 48543291 BLAKE2B f74f2576e3f906db3c96f0854dcc3d7d5d0248b1e35d32da5f88e41751068012e64fed134f34263e2b244263f655fb2602d00d8d191c04573a93164a2fcc7c22 SHA512 ad0f9c50d1dbaaef56fdc43d6b4fa0960453bb0bf60bcafcc33bdbd8e5b4d698e4690baf1ec6be56651153fdbf5af520e9bbd8367a75fe36a995baac47069b4d
22 DIST pillow-8.3.1.tar.gz 48722889 BLAKE2B 4483c3cebda33e57f665a7a73b5898b4f0fb5be895ec05feeb266a99f33c78fd1b550d82225c201ea015d267206f5b47909b4963da9f17d51d0e5bd897332a77 SHA512 22a85a5510c8ec13928af571ec7f329f4728c46ebaadfe338d837f6d3718eedb57b7548fd9a3260a3bb0c0f97b3f3c911e730af01f90ca70c967d44b1e5d3606
23 DIST pillow-8.3.2.tar.gz 48783084 BLAKE2B c63930df3af0270bb092841b3c39a1ea75343ee743f9e4b083a2f6f621ad1e58c7c04c5d6cf4b648fbef2d79d7b5258e27d220cd32dbfff592b5ca70d1f28d64 SHA512 668e97abcd36e42dafa433e8814a0106fe742ab093b12748c13dd9f3f872d18f8b9d44c1a8d4115aa87969a98b53c36ae4783cc3804e2d9a1249eef300555c88
24 +DIST pillow-8.4.0.tar.gz 49364586 BLAKE2B f6a0fbafc0869c952bf88ad96146f27cf70c5680f372763bc9989cc49515bc74886a9d7648114797880ca06defc79e2e50d7ecf36bfa7adbd969450615ac0bd1 SHA512 d395f69ccb37c52a3b6f45836700ffbc3173afae31848cc61d7b47db88ca1594541023beb9a14fd9067aca664e182c7d6e3300ab3e3095c31afe8dcbc6e08233
25
26 diff --git a/dev-python/pillow/pillow-8.4.0.ebuild b/dev-python/pillow/pillow-8.4.0.ebuild
27 new file mode 100644
28 index 00000000000..a8d72ba3d14
29 --- /dev/null
30 +++ b/dev-python/pillow/pillow-8.4.0.ebuild
31 @@ -0,0 +1,98 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
38 +PYTHON_REQ_USE='tk?,threads(+)'
39 +
40 +inherit distutils-r1 toolchain-funcs virtualx
41 +
42 +MY_PN=Pillow
43 +MY_P=${MY_PN}-${PV}
44 +
45 +DESCRIPTION="Python Imaging Library (fork)"
46 +HOMEPAGE="https://python-pillow.org/"
47 +SRC_URI="https://github.com/python-pillow/Pillow/archive/${PV}.tar.gz -> ${P}.tar.gz"
48 +S="${WORKDIR}/${MY_P}"
49 +
50 +LICENSE="HPND"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
53 +IUSE="examples imagequant +jpeg jpeg2k lcms test tiff tk truetype webp xcb zlib"
54 +REQUIRED_USE="test? ( jpeg jpeg2k tiff truetype )"
55 +RESTRICT="!test? ( test )"
56 +
57 +DEPEND="
58 + imagequant? ( media-gfx/libimagequant:0 )
59 + jpeg? ( virtual/jpeg:0 )
60 + jpeg2k? ( media-libs/openjpeg:2= )
61 + lcms? ( media-libs/lcms:2= )
62 + tiff? ( media-libs/tiff:0=[jpeg,zlib] )
63 + truetype? ( media-libs/freetype:2= )
64 + webp? ( media-libs/libwebp:0= )
65 + xcb? ( x11-libs/libxcb )
66 + zlib? ( sys-libs/zlib:0= )"
67 +RDEPEND="${DEPEND}
68 + dev-python/olefile[${PYTHON_USEDEP}]"
69 +BDEPEND="
70 + virtual/pkgconfig
71 + test? (
72 + ${RDEPEND}
73 + dev-python/pytest[${PYTHON_USEDEP}]
74 + || (
75 + media-gfx/imagemagick[png]
76 + media-gfx/graphicsmagick[png]
77 + )
78 + )
79 +"
80 +
81 +python_configure_all() {
82 + # It's important that these flags are also passed during the install phase
83 + # as well. Make sure of that if you change the lines below. See bug 661308.
84 + DISTUTILS_ARGS=(
85 + build_ext
86 + --disable-platform-guessing
87 + $(use_enable truetype freetype)
88 + $(use_enable jpeg)
89 + $(use_enable jpeg2k jpeg2000)
90 + $(use_enable lcms)
91 + $(use_enable tiff)
92 + $(use_enable imagequant)
93 + $(use_enable webp)
94 + $(use_enable webp webpmux)
95 + $(use_enable xcb)
96 + $(use_enable zlib)
97 + )
98 +
99 + # setup.py sucks at adding the right toolchain paths but it does
100 + # accept additional ones from INCLUDE and LIB so set these. You
101 + # wouldn't normally need these at all as the toolchain should look
102 + # here anyway but this setup.py does stupid things.
103 + export \
104 + INCLUDE=${ESYSROOT}/usr/include \
105 + LIB=${ESYSROOT}/usr/$(get_libdir)
106 +
107 + # We have patched in this env var.
108 + tc-export PKG_CONFIG
109 +}
110 +
111 +python_test() {
112 + "${EPYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}"
113 + # no:relaxed: pytest-relaxed plugin make our tests fail. deactivate if installed
114 + virtx epytest -p no:relaxed
115 +}
116 +
117 +python_install() {
118 + python_doheader src/libImaging/*.h
119 + distutils-r1_python_install
120 +}
121 +
122 +python_install_all() {
123 + if use examples ; then
124 + docinto example
125 + dodoc docs/example/*
126 + docompress -x /usr/share/doc/${PF}/example
127 + fi
128 + distutils-r1_python_install_all
129 +}