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