Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/
Date: Tue, 03 Jul 2018 15:16:41
Message-Id: 1530630968.c4a8bad35781259f3aeeb77745242ff3c655a5a3.vdupras@gentoo
1 commit: c4a8bad35781259f3aeeb77745242ff3c655a5a3
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 3 15:16:08 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 3 15:16:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4a8bad3
7
8 dev-python/pillow: bump to v5.2.0
9
10 * Drop python 3.4
11 * Use pytest instead of nose
12 * No need to remove Script/* anymore: upstream removed them
13 * No need for --disable-raqm anymore: it's dynamically linked now
14 * Fix examples install
15
16 Package-Manager: Portage-2.3.40, Repoman-2.3.9
17
18 dev-python/pillow/Manifest | 1 +
19 dev-python/pillow/pillow-5.2.0.ebuild | 84 +++++++++++++++++++++++++++++++++++
20 2 files changed, 85 insertions(+)
21
22 diff --git a/dev-python/pillow/Manifest b/dev-python/pillow/Manifest
23 index 827ac450d96..a65e09da7b0 100644
24 --- a/dev-python/pillow/Manifest
25 +++ b/dev-python/pillow/Manifest
26 @@ -1,2 +1,3 @@
27 DIST Pillow-3.4.2.zip 11042238 BLAKE2B 334af6eeadb3203b51572eca6ad9c196f3eeac14da0f1aedc351db692b33d413fdf5bc5c8564d2f53c324d9485dbdbda664b75a570b779e24f238c21829b4a39 SHA512 5e05206db5bc1b4177384f7e91ee79015c6e1bbdc7c31c997da054391b9b5ec7c1ebdec258a33f598986533894f3324b03d0b4b385b94e72a0517a3437553b39
28 DIST Pillow-4.3.0.tar.gz 13874155 BLAKE2B c2258efe2727adeb7ba370fe30ef9bbabe952a1f6690e7904352884951e648d2c0e2037143b7c71a802ea1a04a2f7827a001621480036e43f6c01a96de3edcf7 SHA512 5811252802bd01ac86157235d42138685e746723df48b67ec7c7ebd3f172532b40cf86ca9d3d792e82f03986303a084bf3491c0d511dc068dea1bc631afdeabb
29 +DIST Pillow-5.2.0.tar.gz 14499068 BLAKE2B 7111eb8e2911cc197b66bbc06a13459484e2c4a1f5037e4bcf702ea350763b2b758cbeef9749aeb29f1ab64d33081131f7e46a3fbb33fee48e70660f8f75eddb SHA512 2f19512d0573bd4696a5b4d54ff21473492f92705d33bd0994ccd085028d209bfb0031e2b95947c1e8fc9d0b0956cdf1f705c1fbaff39390791cac1708bff22c
30
31 diff --git a/dev-python/pillow/pillow-5.2.0.ebuild b/dev-python/pillow/pillow-5.2.0.ebuild
32 new file mode 100644
33 index 00000000000..097bd53eced
34 --- /dev/null
35 +++ b/dev-python/pillow/pillow-5.2.0.ebuild
36 @@ -0,0 +1,84 @@
37 +# Copyright 1999-2018 Gentoo Foundation
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=6
41 +
42 +PYTHON_COMPAT=( python2_7 python3_{5,6} )
43 +PYTHON_REQ_USE='tk?,threads(+)'
44 +
45 +inherit distutils-r1 eutils virtualx
46 +
47 +MY_PN=Pillow
48 +MY_P=${MY_PN}-${PV}
49 +
50 +DESCRIPTION="Python Imaging Library (fork)"
51 +HOMEPAGE="https://python-pillow.org/"
52 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
53 +
54 +LICENSE="HPND"
55 +SLOT="0"
56 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
57 +IUSE="doc examples imagequant jpeg jpeg2k lcms test tiff tk truetype webp zlib"
58 +
59 +REQUIRED_USE="test? ( jpeg tiff )"
60 +
61 +RDEPEND="
62 + dev-python/olefile[${PYTHON_USEDEP}]
63 + imagequant? ( media-gfx/libimagequant:0 )
64 + jpeg? ( virtual/jpeg:0 )
65 + jpeg2k? ( media-libs/openjpeg:2= )
66 + lcms? ( media-libs/lcms:2= )
67 + tiff? ( media-libs/tiff:0=[jpeg,zlib] )
68 + truetype? ( media-libs/freetype:2= )
69 + webp? ( media-libs/libwebp:0= )
70 + zlib? ( sys-libs/zlib:0= )"
71 +DEPEND="${RDEPEND}
72 + dev-python/setuptools[${PYTHON_USEDEP}]
73 + doc? (
74 + dev-python/sphinx[${PYTHON_USEDEP}]
75 + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
76 + )
77 + test? ( dev-python/nose[${PYTHON_USEDEP}] )
78 +"
79 +
80 +S="${WORKDIR}/${MY_P}"
81 +
82 +python_compile() {
83 + local args=(
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 zlib)
94 + )
95 + distutils-r1_python_compile build_ext "${args[@]}"
96 +}
97 +
98 +python_compile_all() {
99 + use doc && emake -C docs html
100 +}
101 +
102 +python_test() {
103 + "${PYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}"
104 + virtx pytest -vx Tests/test_*.py
105 +}
106 +
107 +python_install() {
108 + python_doheader src/libImaging/*.h
109 + distutils-r1_python_install
110 +}
111 +
112 +python_install_all() {
113 + use doc && local HTML_DOCS=( docs/_build/html/. )
114 + if use examples ; then
115 + docinto example
116 + dodoc docs/example/*
117 + docompress -x /usr/share/doc/${PF}/example
118 + fi
119 + distutils-r1_python_install_all
120 +}