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, 26 Apr 2021 19:47:06
Message-Id: 1619466400.6f0fdea56551c58b2a2cea3308892622975e1cc8.mgorny@gentoo
1 commit: 6f0fdea56551c58b2a2cea3308892622975e1cc8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 26 19:46:40 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 26 19:46:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f0fdea5
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.1.2.ebuild | 99 -----------------------------------
14 2 files changed, 100 deletions(-)
15
16 diff --git a/dev-python/pillow/Manifest b/dev-python/pillow/Manifest
17 index 1bc2debb6ad..4bb03cd2cb3 100644
18 --- a/dev-python/pillow/Manifest
19 +++ b/dev-python/pillow/Manifest
20 @@ -1,2 +1 @@
21 -DIST pillow-8.1.2.tar.gz 45217041 BLAKE2B dbc7fb5c426c6a8f0efd218db5cd404c6b6a603054b36125ea687c69cca78ddd2e58712e8fe94460978bffe6bc059e5819d7ac6371bad11ee8fc1df445495c70 SHA512 32ffedf8cc8f2c21c241f41938d0521626ea05206d1a762305ac38abedecdf9bc8a6e5e2ded7565340e54797a4395acefb3b4d939ebdde8fc9583a1998bae34d
22 DIST pillow-8.2.0.tar.gz 47898485 BLAKE2B bd8421a101e0be080f2fab238c3c26a4e1e722738e1036bfbb533f420881ea638016ac56e9e66ec74a93c6dafc6e4f8807ec3d504400bb675488da00c9c3cb1c SHA512 40e97a54689ca04349d17b69b0e95bb3ef4fde0b60c6c55a2ec76034a5c2a9ebee0b310f68de1636db08786d9b2ad444bf10ac3b42a31404847cc165aa8392ac
23
24 diff --git a/dev-python/pillow/pillow-8.1.2.ebuild b/dev-python/pillow/pillow-8.1.2.ebuild
25 deleted file mode 100644
26 index 7136f724209..00000000000
27 --- a/dev-python/pillow/pillow-8.1.2.ebuild
28 +++ /dev/null
29 @@ -1,99 +0,0 @@
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 jpeg2k 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 - virtual/pkgconfig
69 - test? (
70 - ${RDEPEND}
71 - dev-python/pytest[${PYTHON_USEDEP}]
72 - media-gfx/imagemagick[png]
73 - )
74 -"
75 -
76 -python_configure_all() {
77 - # It's important that these flags are also passed during the install phase
78 - # as well. Make sure of that if you change the lines below. See bug 661308.
79 - mydistutilsargs=(
80 - build_ext
81 - --disable-platform-guessing
82 - $(use_enable truetype freetype)
83 - $(use_enable jpeg)
84 - $(use_enable jpeg2k jpeg2000)
85 - $(use_enable lcms)
86 - $(use_enable tiff)
87 - $(use_enable imagequant)
88 - $(use_enable webp)
89 - $(use_enable webp webpmux)
90 - $(use_enable xcb)
91 - $(use_enable zlib)
92 - )
93 -
94 - # setup.py sucks at adding the right toolchain paths but it does
95 - # accept additional ones from INCLUDE and LIB so set these. You
96 - # wouldn't normally need these at all as the toolchain should look
97 - # here anyway but this setup.py does stupid things.
98 - export \
99 - INCLUDE=${ESYSROOT}/usr/include \
100 - LIB=${ESYSROOT}/usr/$(get_libdir)
101 -
102 - # We have patched in this env var.
103 - tc-export PKG_CONFIG
104 -}
105 -
106 -src_test() {
107 - virtx distutils-r1_src_test
108 -}
109 -
110 -python_test() {
111 - "${EPYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}"
112 - # no:relaxed: pytest-relaxed plugin make our tests fail. deactivate if installed
113 - pytest -vv -p no:relaxed || die "Tests fail with ${EPYTHON}"
114 -}
115 -
116 -python_install() {
117 - python_doheader src/libImaging/*.h
118 - distutils-r1_python_install
119 -}
120 -
121 -python_install_all() {
122 - if use examples ; then
123 - docinto example
124 - dodoc docs/example/*
125 - docompress -x /usr/share/doc/${PF}/example
126 - fi
127 - distutils-r1_python_install_all
128 -}