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, 28 Oct 2021 07:00:50
Message-Id: 1635404437.74f459dbed385a2aa68d89adaab757aaf7b63fda.mgorny@gentoo
1 commit: 74f459dbed385a2aa68d89adaab757aaf7b63fda
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 28 06:45:55 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 28 07:00:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f459db
7
8 dev-python/imageio: Bump to 2.10.1
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.10.1.ebuild | 41 ++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
17 index dd7ab85042d..654b90731b6 100644
18 --- a/dev-python/imageio/Manifest
19 +++ b/dev-python/imageio/Manifest
20 @@ -1 +1,2 @@
21 +DIST imageio-2.10.1.gh.tar.gz 334497 BLAKE2B 979107dec1c18c87a6620be90d68d24e37ae75f7418fafbe67d78fbc3de38b2ccd810e120501061d88a0029674ba814507ac73852b89559413f427986398819b SHA512 2af953f6c2eda3bf1fe3cf74a241bfb7cdb01ff3712f3d7526ceb1aad38499e481fd90eb782324264804c07fcb4425bcd0983be1ef0ec1d86a9b632098944f5a
22 DIST imageio-2.9.0.gh.tar.gz 298291 BLAKE2B b36b0a5bf74938177353ffce103d7479a2b15442623d400261dac485b5cc7e8743b18e92d938fcfe2b68dfdef1d1417308e5441112ff851481cc768b76ab56d0 SHA512 a325ad4f0913219b87418d4f57fddc3f1e4c1be4102e933aa0c236317044d2a5ded623bbe86b92d3f2004bb9386ccb3f0cc03b7b118f9faa6f320dd147157ed6
23
24 diff --git a/dev-python/imageio/imageio-2.10.1.ebuild b/dev-python/imageio/imageio-2.10.1.ebuild
25 new file mode 100644
26 index 00000000000..9f303080792
27 --- /dev/null
28 +++ b/dev-python/imageio/imageio-2.10.1.ebuild
29 @@ -0,0 +1,41 @@
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 + )
60 +"
61 +
62 +distutils_enable_tests pytest
63 +
64 +EPYTEST_DESELECT=(
65 + # Fails because of system installed freeimage
66 + tests/test_core.py::test_findlib2
67 + # Needs unpackaged imageio_ffmpeg
68 + tests/test_ffmpeg.py
69 + tests/test_ffmpeg_info.py
70 +)