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, 02 Apr 2019 20:50:36
Message-Id: 1554238202.b22b637c692189184084035efdf7ba6fe6297b6c.vdupras@gentoo
1 commit: b22b637c692189184084035efdf7ba6fe6297b6c
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 2 20:50:02 2019 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 2 20:50:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b22b637c
7
8 dev-python/pillow: bump to 6.0.0
9
10 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-python/pillow/Manifest | 1 +
14 dev-python/pillow/pillow-6.0.0.ebuild | 105 ++++++++++++++++++++++++++++++++++
15 2 files changed, 106 insertions(+)
16
17 diff --git a/dev-python/pillow/Manifest b/dev-python/pillow/Manifest
18 index 2fdd8f21542..8ba4bd6a56c 100644
19 --- a/dev-python/pillow/Manifest
20 +++ b/dev-python/pillow/Manifest
21 @@ -1,3 +1,4 @@
22 DIST Pillow-3.4.2.zip 11042238 BLAKE2B 334af6eeadb3203b51572eca6ad9c196f3eeac14da0f1aedc351db692b33d413fdf5bc5c8564d2f53c324d9485dbdbda664b75a570b779e24f238c21829b4a39 SHA512 5e05206db5bc1b4177384f7e91ee79015c6e1bbdc7c31c997da054391b9b5ec7c1ebdec258a33f598986533894f3324b03d0b4b385b94e72a0517a3437553b39
23 DIST Pillow-5.2.0.tar.gz 14499068 BLAKE2B 7111eb8e2911cc197b66bbc06a13459484e2c4a1f5037e4bcf702ea350763b2b758cbeef9749aeb29f1ab64d33081131f7e46a3fbb33fee48e70660f8f75eddb SHA512 2f19512d0573bd4696a5b4d54ff21473492f92705d33bd0994ccd085028d209bfb0031e2b95947c1e8fc9d0b0956cdf1f705c1fbaff39390791cac1708bff22c
24 DIST pillow-5.4.1.tar.gz 15799745 BLAKE2B d9e3851a80a1f94d7292852b9ab806d9a26870795f499bb109a440e64c07112055a4cd382688b977f3c3ae76ed3d6fd38460afff594f964338afa668d288e4de SHA512 20b75ab50df7e9545c76d66ad585922d1f86fbcf8df9d2566882ab8929c3122573b9ec622766523ec46f5e7a98740cc78ff192e3e8f08ab0b77a7f2b033a7f62
25 +DIST pillow-6.0.0.tar.gz 29205509 BLAKE2B 83e2d1abeea468b7bf344ea5003940b14d6c69649e02a954c0b3810fc5d77288c361fb40747171176d29843848d802b783a2b0c0de15476462f17f15552298fa SHA512 c5fbe1432d576fe4a70a15fa7a70a446ccbcb247fbd4c3605917fa26a6345eb9319c0153dba7637d521c358963f2f06f525219aa1af1502da2565d54dceef4c5
26
27 diff --git a/dev-python/pillow/pillow-6.0.0.ebuild b/dev-python/pillow/pillow-6.0.0.ebuild
28 new file mode 100644
29 index 00000000000..b987fe75792
30 --- /dev/null
31 +++ b/dev-python/pillow/pillow-6.0.0.ebuild
32 @@ -0,0 +1,105 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy )
39 +PYTHON_REQ_USE='tk?,threads(+)'
40 +
41 +inherit distutils-r1 toolchain-funcs virtualx
42 +
43 +MY_PN=Pillow
44 +MY_P=${MY_PN}-${PV}
45 +
46 +DESCRIPTION="Python Imaging Library (fork)"
47 +HOMEPAGE="https://python-pillow.org/"
48 +SRC_URI="https://github.com/python-pillow/Pillow/archive/${PV}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="HPND"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
53 +IUSE="doc examples imagequant jpeg jpeg2k lcms test tiff tk truetype webp zlib"
54 +
55 +REQUIRED_USE="test? ( jpeg tiff )"
56 +
57 +RDEPEND="
58 + dev-python/olefile[${PYTHON_USEDEP}]
59 + imagequant? ( media-gfx/libimagequant:0 )
60 + jpeg? ( virtual/jpeg:0 )
61 + jpeg2k? ( media-libs/openjpeg:2= )
62 + lcms? ( media-libs/lcms:2= )
63 + tiff? ( media-libs/tiff:0=[jpeg,zlib] )
64 + truetype? ( media-libs/freetype:2= )
65 + webp? ( media-libs/libwebp:0= )
66 + zlib? ( sys-libs/zlib:0= )"
67 +DEPEND="${RDEPEND}
68 + dev-python/setuptools[${PYTHON_USEDEP}]
69 + doc? (
70 + dev-python/sphinx[${PYTHON_USEDEP}]
71 + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
72 + )
73 + test? (
74 + dev-python/pytest[${PYTHON_USEDEP}]
75 + media-gfx/imagemagick[png]
76 + )
77 +"
78 +
79 +S="${WORKDIR}/${MY_P}"
80 +
81 +PATCHES=(
82 + "${FILESDIR}"/${PN}-5.4.1-{pkg-config,toolchain-paths}.patch
83 +)
84 +
85 +python_configure_all() {
86 + # It's important that these flags are also passed during the install phase
87 + # as well. Make sure of that if you change the lines below. See bug 661308.
88 + mydistutilsargs=(
89 + build_ext
90 + --disable-platform-guessing
91 + $(use_enable truetype freetype)
92 + $(use_enable jpeg)
93 + $(use_enable jpeg2k jpeg2000)
94 + $(use_enable lcms)
95 + $(use_enable tiff)
96 + $(use_enable imagequant)
97 + $(use_enable webp)
98 + $(use_enable webp webpmux)
99 + $(use_enable zlib)
100 + )
101 +
102 + # setup.py sucks at adding the right toolchain paths but it does
103 + # accept additional ones from INCLUDE and LIB so set these. You
104 + # wouldn't normally need these at all as the toolchain should look
105 + # here anyway but this setup.py does stupid things.
106 + export \
107 + INCLUDE=${ESYSROOT}/usr/include \
108 + LIB=${ESYSROOT}/usr/$(get_libdir)
109 +
110 + # We have patched in this env var.
111 + tc-export PKG_CONFIG
112 +}
113 +
114 +python_compile_all() {
115 + use doc && emake -C docs html
116 +}
117 +
118 +python_test() {
119 + "${PYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}"
120 + # no:relaxed: pytest-relaxed plugin make our tests fail. deactivate if installed
121 + virtx pytest -vv -p no:relaxed
122 +}
123 +
124 +python_install() {
125 + python_doheader src/libImaging/*.h
126 + distutils-r1_python_install
127 +}
128 +
129 +python_install_all() {
130 + use doc && local HTML_DOCS=( docs/_build/html/. )
131 + if use examples ; then
132 + docinto example
133 + dodoc docs/example/*
134 + docompress -x /usr/share/doc/${PF}/example
135 + fi
136 + distutils-r1_python_install_all
137 +}