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/imageio/
Date: Thu, 23 Dec 2021 09:30:50
Message-Id: 1640251838.5ce2c8f722213539e411d55a88f387ff7c903c47.mgorny@gentoo
1 commit: 5ce2c8f722213539e411d55a88f387ff7c903c47
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 23 08:21:48 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 23 09:30:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ce2c8f7
7
8 dev-python/imageio: Bump to 2.13.5
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/imageio/Manifest | 1 +
13 dev-python/imageio/imageio-2.13.5.ebuild | 45 ++++++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
17 index 1aeb98ed65ee..f8b5662463f3 100644
18 --- a/dev-python/imageio/Manifest
19 +++ b/dev-python/imageio/Manifest
20 @@ -1 +1,2 @@
21 DIST imageio-2.13.4.gh.tar.gz 340913 BLAKE2B 332d819633a52069265dd0c02163698085b8d0891ee84def78d99f6fb9888752d8f6384c9666dc66d99bc48673648f736eb6f545b67583cae7252caef6f9e499 SHA512 0329a1bfb6906d7f759fec8d5a500cae9a8edaa125d3e4cab7f0e87b2e5eef24655520aecab309de823f9bd8357a1461f772801bac437ed3489804e3c4b40855
22 +DIST imageio-2.13.5.gh.tar.gz 341447 BLAKE2B 8fd719533325647980355c0a5180a949d1f282ed11fcdb92a0c580f6aa76f799a60f8a3642c72424e557c84c5f1d5a0610cf679d37dcd8d157865c5d19ef94bf SHA512 52b431c3f41ea598d48f1d9c36cd9a5cdaa13365ce5391b832a3ef5dbdb6803435456bd653b509b75ee00452d07b47e43d87ac0c80598bb99f817ee8abe2e74c
23
24 diff --git a/dev-python/imageio/imageio-2.13.5.ebuild b/dev-python/imageio/imageio-2.13.5.ebuild
25 new file mode 100644
26 index 000000000000..f7d4d4abf4c9
27 --- /dev/null
28 +++ b/dev-python/imageio/imageio-2.13.5.ebuild
29 @@ -0,0 +1,45 @@
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} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Python library for reading and writing image data"
39 +HOMEPAGE="https://imageio.github.io/"
40 +SRC_URI="
41 + https://github.com/imageio/imageio/archive/v${PV}.tar.gz
42 + -> ${P}.gh.tar.gz
43 +"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +PROPERTIES="test_network"
49 +RESTRICT="test"
50 +
51 +RDEPEND="
52 + dev-python/numpy[${PYTHON_USEDEP}]
53 + dev-python/pillow[${PYTHON_USEDEP}]
54 + media-libs/freeimage
55 +"
56 +BDEPEND="
57 + test? (
58 + dev-python/psutil[${PYTHON_USEDEP}]
59 + dev-python/tifffile[${PYTHON_USEDEP}]
60 + )
61 +"
62 +
63 +distutils_enable_tests pytest
64 +
65 +EPYTEST_DESELECT=(
66 + # Fails because of system installed freeimage
67 + tests/test_core.py::test_findlib2
68 +)
69 +
70 +EPYTEST_IGNORE=(
71 + # Needs unpackaged imageio_ffmpeg
72 + tests/test_ffmpeg.py
73 + tests/test_ffmpeg_info.py
74 +)