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: Wed, 08 Dec 2021 05:37:55
Message-Id: 1638941860.31839896169ff8acca56e79ef1841bdadea3d18c.mgorny@gentoo
1 commit: 31839896169ff8acca56e79ef1841bdadea3d18c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 8 05:36:25 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 8 05:37:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31839896
7
8 dev-python/pillow: Remove old
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.3.2.ebuild | 98 -----------------------------------
14 2 files changed, 99 deletions(-)
15
16 diff --git a/dev-python/pillow/Manifest b/dev-python/pillow/Manifest
17 index 4c0124ee7f42..9b17beaaf8f8 100644
18 --- a/dev-python/pillow/Manifest
19 +++ b/dev-python/pillow/Manifest
20 @@ -1,2 +1 @@
21 -DIST pillow-8.3.2.tar.gz 48783084 BLAKE2B c63930df3af0270bb092841b3c39a1ea75343ee743f9e4b083a2f6f621ad1e58c7c04c5d6cf4b648fbef2d79d7b5258e27d220cd32dbfff592b5ca70d1f28d64 SHA512 668e97abcd36e42dafa433e8814a0106fe742ab093b12748c13dd9f3f872d18f8b9d44c1a8d4115aa87969a98b53c36ae4783cc3804e2d9a1249eef300555c88
22 DIST pillow-8.4.0.tar.gz 49364586 BLAKE2B f6a0fbafc0869c952bf88ad96146f27cf70c5680f372763bc9989cc49515bc74886a9d7648114797880ca06defc79e2e50d7ecf36bfa7adbd969450615ac0bd1 SHA512 d395f69ccb37c52a3b6f45836700ffbc3173afae31848cc61d7b47db88ca1594541023beb9a14fd9067aca664e182c7d6e3300ab3e3095c31afe8dcbc6e08233
23
24 diff --git a/dev-python/pillow/pillow-8.3.2.ebuild b/dev-python/pillow/pillow-8.3.2.ebuild
25 deleted file mode 100644
26 index 31930eb7c91d..000000000000
27 --- a/dev-python/pillow/pillow-8.3.2.ebuild
28 +++ /dev/null
29 @@ -1,98 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} 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 ~riscv 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 jpeg2k tiff truetype )"
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 - virtual/pkgconfig
69 - test? (
70 - ${RDEPEND}
71 - dev-python/pytest[${PYTHON_USEDEP}]
72 - || (
73 - media-gfx/imagemagick[png]
74 - media-gfx/graphicsmagick[png]
75 - )
76 - )
77 -"
78 -
79 -python_configure_all() {
80 - # It's important that these flags are also passed during the install phase
81 - # as well. Make sure of that if you change the lines below. See bug 661308.
82 - DISTUTILS_ARGS=(
83 - build_ext
84 - --disable-platform-guessing
85 - $(use_enable truetype freetype)
86 - $(use_enable jpeg)
87 - $(use_enable jpeg2k jpeg2000)
88 - $(use_enable lcms)
89 - $(use_enable tiff)
90 - $(use_enable imagequant)
91 - $(use_enable webp)
92 - $(use_enable webp webpmux)
93 - $(use_enable xcb)
94 - $(use_enable zlib)
95 - )
96 -
97 - # setup.py sucks at adding the right toolchain paths but it does
98 - # accept additional ones from INCLUDE and LIB so set these. You
99 - # wouldn't normally need these at all as the toolchain should look
100 - # here anyway but this setup.py does stupid things.
101 - export \
102 - INCLUDE=${ESYSROOT}/usr/include \
103 - LIB=${ESYSROOT}/usr/$(get_libdir)
104 -
105 - # We have patched in this env var.
106 - tc-export PKG_CONFIG
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 - virtx epytest -p no:relaxed
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 -}