[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/files/, dev-python/imageio-ffmpeg/

2024-03-07 Thread Michał Górny
commit: 880705050a56337a151893346e64cf7031474eab
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar  7 15:29:48 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar  7 15:39:06 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88070505

dev-python/imageio-ffmpeg: Add a patch for ffmpeg-6 compat

Bug: https://github.com/imageio/imageio-ffmpeg/issues/99
Pull-Request: https://github.com/imageio/imageio-ffmpeg/pull/107
Signed-off-by: Michał Górny  gentoo.org>

 .../files/imageio-ffmpeg-0.4.9-ffmpeg-6.patch  | 25 ++
 ...0.4.9.ebuild => imageio-ffmpeg-0.4.9-r1.ebuild} |  7 +-
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git 
a/dev-python/imageio-ffmpeg/files/imageio-ffmpeg-0.4.9-ffmpeg-6.patch 
b/dev-python/imageio-ffmpeg/files/imageio-ffmpeg-0.4.9-ffmpeg-6.patch
new file mode 100644
index ..196c21523426
--- /dev/null
+++ b/dev-python/imageio-ffmpeg/files/imageio-ffmpeg-0.4.9-ffmpeg-6.patch
@@ -0,0 +1,25 @@
+From e2ec5ea3b7d9e5fd3225a05891f3611e29adbd1d Mon Sep 17 00:00:00 2001
+From: Tom Vercauteren 
+Date: Thu, 7 Mar 2024 14:28:21 +
+Subject: [PATCH] Add a null filter to re-enable frame count
+
+This aims at addressing https://github.com/imageio/imageio-ffmpeg/issues/99
+---
+ imageio_ffmpeg/_io.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/imageio_ffmpeg/_io.py b/imageio_ffmpeg/_io.py
+index b85c453..faf1ee8 100644
+--- a/imageio_ffmpeg/_io.py
 b/imageio_ffmpeg/_io.py
+@@ -153,8 +153,8 @@ def count_frames_and_secs(path):
+ path,
+ "-map",
+ "0:v:0",
+-"-c",
+-"copy",
++"-vf",
++"null",
+ "-f",
+ "null",
+ "-",

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9-r1.ebuild
similarity index 81%
rename from dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9.ebuild
rename to dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9-r1.ebuild
index caabdf39b65d..71869a870c23 100644
--- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9.ebuild
+++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2023 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -30,3 +30,8 @@ RDEPEND="
 "
 
 distutils_enable_tests pytest
+
+PATCHES=(
+   # https://github.com/imageio/imageio-ffmpeg/pull/107
+   "${FILESDIR}/${P}-ffmpeg-6.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2024-03-07 Thread Michał Górny
commit: a6bc67a16fa9203f6cdf3d05847de5f69f786ff0
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar  7 15:30:23 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar  7 15:39:06 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6bc67a1

dev-python/imageio: Reenable imageio-ffmpeg-based tests

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/imageio-2.34.0.ebuild | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/dev-python/imageio/imageio-2.34.0.ebuild 
b/dev-python/imageio/imageio-2.34.0.ebuild
index 8a2d4f074917..9c415ea19f7b 100644
--- a/dev-python/imageio/imageio-2.34.0.ebuild
+++ b/dev-python/imageio/imageio-2.34.0.ebuild
@@ -42,7 +42,7 @@ RDEPEND="
 BDEPEND="
test? (
dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   >=dev-python/imageio-ffmpeg-0.4.9-r1[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/tifffile[${PYTHON_USEDEP}]
@@ -82,11 +82,4 @@ EPYTEST_DESELECT=(
# requires pillow-heif, also possibly Internet
tests/test_pillow.py::test_avif_remote
tests/test_pillow.py::test_heif_remote
-   # TODO: imageio-ffmpeg seems broken with current ffmpeg?
-   tests/test_ffmpeg.py::test_reader_more
-   tests/test_ffmpeg.py::test_reverse_read
-   tests/test_ffmpeg.py::test_write_audio_ac3
-   tests/test_ffmpeg.py::test_write_audio_default_codec
-   tests/test_ffmpeg.py::test_writer_pixelformat_size_verbose
-   tests/test_ffmpeg_info.py::test_overload_fps
 )



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2024-02-11 Thread Michał Górny
commit: c653d612febb3a6b48fe0a1fa1f77a8f000d10ae
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 12 03:37:52 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 12 03:37:52 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c653d612

dev-python/imageio: Bump to 2.34.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.34.0.ebuild | 92 
 2 files changed, 93 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 74f9f2837ae9..d43fd6d7485d 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.33.1.gh.tar.gz 413003 BLAKE2B 
33afafcca605388e24920047d80b37e5a100c3a747d862a8fccece9ebd6d2ec53f564b1ce5d37fe7c97b2c4b7d4cf5258331b5824ecbdc4648809de7e763e4e0
 SHA512 
c7fb3ee6df72f4ef93be8a4b21beb15287a644113df2790f0049d6a8dcac6b7762186c4f2b9a07c2b579b3c0d4fbf3037c82889f1911c65fc615b7c8c98c80bb
+DIST imageio-2.34.0.gh.tar.gz 413125 BLAKE2B 
c6f9650265924f370634f5ab87bed94bdb501d078a154b93400d8c89847da3fef7196f18db0682bbfc99ac5c9f4156a113bb2d74f572c010842b9b9593d7c13e
 SHA512 
d28b5b849a8d7fc90c4c4a82b2056431e5351ecce709cd48ccb9aaf58a50964a1b77faf4663d3fdeb4757951fb8a03b5bf632e57f78ddd59d5a9acdb62b78f48
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.34.0.ebuild 
b/dev-python/imageio/imageio-2.34.0.ebuild
new file mode 100644
index ..8a2d4f074917
--- /dev/null
+++ b/dev-python/imageio/imageio-2.34.0.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+   # requires pillow-heif, also possibly Internet
+   tests/test_pillow.py::test_avif_remote
+   tests/test_pillow.py::test_heif_remote
+   # TODO: imageio-ffmpeg seems broken with current ffmpeg?
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2024-01-26 Thread Michał Górny
commit: 652dd4b3f3fbf440c1dd108c93073d85b62bc707
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 26 17:31:38 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 26 20:15:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=652dd4b3

dev-python/imageio: Enable py3.12

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/imageio-2.33.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/imageio/imageio-2.33.1.ebuild 
b/dev-python/imageio/imageio-2.33.1.ebuild
index 4f1e9f377aa3..8a2d4f074917 100644
--- a/dev-python/imageio/imageio-2.33.1.ebuild
+++ b/dev-python/imageio/imageio-2.33.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-12-30 Thread Michał Górny
commit: f0889f3dad924fb0e179ecb6b8b30557cdb22dc8
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec 30 18:27:34 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec 30 18:27:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0889f3d

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  3 --
 dev-python/imageio/imageio-2.31.6.ebuild | 83 ---
 dev-python/imageio/imageio-2.32.0.ebuild | 85 
 dev-python/imageio/imageio-2.33.0.ebuild | 85 
 4 files changed, 256 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 4d87da2c2bf2..74f9f2837ae9 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,6 +1,3 @@
-DIST imageio-2.31.6.gh.tar.gz 412220 BLAKE2B 
b8eb95d8bf4fd1f8a0873581f401667e5ad4bb1a4cc43527e163e292cac6177e095c140857e8acdd483029f8d155a7e7bde33b41fc53d5945ff42e2685f74d03
 SHA512 
10f9fc7ac7ef1c3352659ec29c66684133c51350e33f16c617806f75b6137aeb8a580975ae430afab16f06843efa3e41b7e4ab042fb183d44f1a3e5c1d68efeb
-DIST imageio-2.32.0.gh.tar.gz 412403 BLAKE2B 
7e29d7e8008caeecbc4c76293da77fe85b0d3d4e6cd12b7ab8f5d0ab895bb22ff6d29bf70469ff848a8bc8449d5211d96f5a2fd9a31ec88beb93d1568ab78f50
 SHA512 
b2a1accdf48e23f1b3813fae5f68afa4501fad47968e20f91af2ba433c629748d6cec5a914c4b2288ce527c81aadea296bf1b2d877ef39b3ac99f85a60aa854d
-DIST imageio-2.33.0.gh.tar.gz 412609 BLAKE2B 
4219199e7ba4810299f66b6d4870875e822d1db87dbfd3eb1e9cea2e74edc3c8f17625d7fdb7a8761db9127e85ccac090a68d01fb4bdf458474823f87cd1d55b
 SHA512 
2dfbddf9489748a3d15851a711bbce9da039a8f3b81638124c51b3b96f06ea83de257132043113b8f5431c987d0701794fe341a17a4623a00c2fa827e6e5e4a1
 DIST imageio-2.33.1.gh.tar.gz 413003 BLAKE2B 
33afafcca605388e24920047d80b37e5a100c3a747d862a8fccece9ebd6d2ec53f564b1ce5d37fe7c97b2c4b7d4cf5258331b5824ecbdc4648809de7e763e4e0
 SHA512 
c7fb3ee6df72f4ef93be8a4b21beb15287a644113df2790f0049d6a8dcac6b7762186c4f2b9a07c2b579b3c0d4fbf3037c82889f1911c65fc615b7c8c98c80bb
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.31.6.ebuild 
b/dev-python/imageio/imageio-2.31.6.ebuild
deleted file mode 100644
index 12482c30948d..
--- a/dev-python/imageio/imageio-2.31.6.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-BIN_COMMIT=224074bca448815e421a59266864c23041531a42
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-   test? (
-   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
-   -> ${PN}-chelsea.png
-   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
-   -> ${PN}-cockatoo.mp4
-   )
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   =dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   local PATCHES=(
-   # block silently downloading vulnerable libraries from the 
Internet
-   "${FILESDIR}"/imageio-2.22.0-block-download.patch
-   )
-
-   if use test; then
-   mkdir -p "${HOME}"/.imageio/images || die
-   local i
-   for i in chelsea.png cockatoo.mp4; do
-   cp "${DISTDIR}/${PN}-${i}" 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2023-12-30 Thread Michał Górny
commit: 12fc64e9f0cb9452d770f1e2e060d4c24ef9c7c3
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec 30 18:27:35 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec 30 18:27:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12fc64e9

dev-python/imageio-ffmpeg: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio-ffmpeg/Manifest |  1 -
 .../imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild | 38 --
 2 files changed, 39 deletions(-)

diff --git a/dev-python/imageio-ffmpeg/Manifest 
b/dev-python/imageio-ffmpeg/Manifest
index e63e7f0825f6..319324fea8e0 100644
--- a/dev-python/imageio-ffmpeg/Manifest
+++ b/dev-python/imageio-ffmpeg/Manifest
@@ -1,2 +1 @@
-DIST imageio-ffmpeg-0.4.8.gh.tar.gz 27124 BLAKE2B 
84ba7cbb46feae7e95b9d6f61e9b3289a753da7d78ad2848b593969c7f2a6f9e36307ca07a4b03f672fe8f61c697dcbf2dc236a2545b9ca9547fa6f174c96220
 SHA512 
aa6179d8c8cdbb49a60bea5ad570c6343d5e6b5a2678e88bacc484916ff806311c121143342f039ba9d41c8ac46ffbfe0adefe298e5eba0052d72c6e1707c4a6
 DIST imageio-ffmpeg-0.4.9.gh.tar.gz 27344 BLAKE2B 
f9bf6421859f8b17aee5300613a14de9883436aaa724b61b8068498f533cc24ab4c8372a6de6ce4ab49218abb84af8a35e29e1ccbe9c913fcdcf2db159f13a92
 SHA512 
ebf63b9ac9c733d4c12d3aa4c6a9e81dd0128795a040e65df03bfae00e3562a3976eaa2f4058562bbddc3f8d63d6bf2a38133de4d2ddb0d2dc62ffab2449e143

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
deleted file mode 100644
index 5270c885eb44..
--- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1
-
-DESCRIPTION="FFMPEG wrapper for Python"
-HOMEPAGE="
-   https://github.com/imageio/imageio-ffmpeg/
-   https://pypi.org/project/imageio-ffmpeg/
-"
-SRC_URI="
-   https://github.com/imageio/imageio-ffmpeg/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-PROPERTIES="test_network"
-RESTRICT="test"
-
-# ffmpeg is used as an executable during runtime
-RDEPEND="
-   media-video/ffmpeg:*
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -e '/setup_requires/d' -i setup.py || die
-
-   distutils-r1_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-12-10 Thread Michał Górny
commit: 020d242e45572891cf995bc5ad9dfad66ea0c595
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Dec 11 03:06:29 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Dec 11 04:14:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=020d242e

dev-python/imageio: Bump to 2.33.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.33.1.ebuild | 92 
 2 files changed, 93 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index aea1c401d9c1..4d87da2c2bf2 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,5 +1,6 @@
 DIST imageio-2.31.6.gh.tar.gz 412220 BLAKE2B 
b8eb95d8bf4fd1f8a0873581f401667e5ad4bb1a4cc43527e163e292cac6177e095c140857e8acdd483029f8d155a7e7bde33b41fc53d5945ff42e2685f74d03
 SHA512 
10f9fc7ac7ef1c3352659ec29c66684133c51350e33f16c617806f75b6137aeb8a580975ae430afab16f06843efa3e41b7e4ab042fb183d44f1a3e5c1d68efeb
 DIST imageio-2.32.0.gh.tar.gz 412403 BLAKE2B 
7e29d7e8008caeecbc4c76293da77fe85b0d3d4e6cd12b7ab8f5d0ab895bb22ff6d29bf70469ff848a8bc8449d5211d96f5a2fd9a31ec88beb93d1568ab78f50
 SHA512 
b2a1accdf48e23f1b3813fae5f68afa4501fad47968e20f91af2ba433c629748d6cec5a914c4b2288ce527c81aadea296bf1b2d877ef39b3ac99f85a60aa854d
 DIST imageio-2.33.0.gh.tar.gz 412609 BLAKE2B 
4219199e7ba4810299f66b6d4870875e822d1db87dbfd3eb1e9cea2e74edc3c8f17625d7fdb7a8761db9127e85ccac090a68d01fb4bdf458474823f87cd1d55b
 SHA512 
2dfbddf9489748a3d15851a711bbce9da039a8f3b81638124c51b3b96f06ea83de257132043113b8f5431c987d0701794fe341a17a4623a00c2fa827e6e5e4a1
+DIST imageio-2.33.1.gh.tar.gz 413003 BLAKE2B 
33afafcca605388e24920047d80b37e5a100c3a747d862a8fccece9ebd6d2ec53f564b1ce5d37fe7c97b2c4b7d4cf5258331b5824ecbdc4648809de7e763e4e0
 SHA512 
c7fb3ee6df72f4ef93be8a4b21beb15287a644113df2790f0049d6a8dcac6b7762186c4f2b9a07c2b579b3c0d4fbf3037c82889f1911c65fc615b7c8c98c80bb
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.33.1.ebuild 
b/dev-python/imageio/imageio-2.33.1.ebuild
new file mode 100644
index ..4f1e9f377aa3
--- /dev/null
+++ b/dev-python/imageio/imageio-2.33.1.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-11-19 Thread Michał Górny
commit: 271e963e8303b7d08717ed9a4bc2726cbe52d5df
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov 20 06:02:15 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov 20 06:55:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=271e963e

dev-python/imageio: Bump to 2.33.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.33.0.ebuild | 85 
 2 files changed, 86 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 5a5d08f6b00b..aea1c401d9c1 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,5 @@
 DIST imageio-2.31.6.gh.tar.gz 412220 BLAKE2B 
b8eb95d8bf4fd1f8a0873581f401667e5ad4bb1a4cc43527e163e292cac6177e095c140857e8acdd483029f8d155a7e7bde33b41fc53d5945ff42e2685f74d03
 SHA512 
10f9fc7ac7ef1c3352659ec29c66684133c51350e33f16c617806f75b6137aeb8a580975ae430afab16f06843efa3e41b7e4ab042fb183d44f1a3e5c1d68efeb
 DIST imageio-2.32.0.gh.tar.gz 412403 BLAKE2B 
7e29d7e8008caeecbc4c76293da77fe85b0d3d4e6cd12b7ab8f5d0ab895bb22ff6d29bf70469ff848a8bc8449d5211d96f5a2fd9a31ec88beb93d1568ab78f50
 SHA512 
b2a1accdf48e23f1b3813fae5f68afa4501fad47968e20f91af2ba433c629748d6cec5a914c4b2288ce527c81aadea296bf1b2d877ef39b3ac99f85a60aa854d
+DIST imageio-2.33.0.gh.tar.gz 412609 BLAKE2B 
4219199e7ba4810299f66b6d4870875e822d1db87dbfd3eb1e9cea2e74edc3c8f17625d7fdb7a8761db9127e85ccac090a68d01fb4bdf458474823f87cd1d55b
 SHA512 
2dfbddf9489748a3d15851a711bbce9da039a8f3b81638124c51b3b96f06ea83de257132043113b8f5431c987d0701794fe341a17a4623a00c2fa827e6e5e4a1
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.33.0.ebuild 
b/dev-python/imageio/imageio-2.33.0.ebuild
new file mode 100644
index ..7e128e3c50b8
--- /dev/null
+++ b/dev-python/imageio/imageio-2.33.0.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-11-05 Thread Michał Górny
commit: ffcdc44752f2dc3229df650c05c044a35edf3f90
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov  6 05:53:19 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov  6 06:22:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffcdc447

dev-python/imageio: Bump to 2.32.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.32.0.ebuild | 85 
 2 files changed, 86 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 16e97ba37998..5a5d08f6b00b 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.31.6.gh.tar.gz 412220 BLAKE2B 
b8eb95d8bf4fd1f8a0873581f401667e5ad4bb1a4cc43527e163e292cac6177e095c140857e8acdd483029f8d155a7e7bde33b41fc53d5945ff42e2685f74d03
 SHA512 
10f9fc7ac7ef1c3352659ec29c66684133c51350e33f16c617806f75b6137aeb8a580975ae430afab16f06843efa3e41b7e4ab042fb183d44f1a3e5c1d68efeb
+DIST imageio-2.32.0.gh.tar.gz 412403 BLAKE2B 
7e29d7e8008caeecbc4c76293da77fe85b0d3d4e6cd12b7ab8f5d0ab895bb22ff6d29bf70469ff848a8bc8449d5211d96f5a2fd9a31ec88beb93d1568ab78f50
 SHA512 
b2a1accdf48e23f1b3813fae5f68afa4501fad47968e20f91af2ba433c629748d6cec5a914c4b2288ce527c81aadea296bf1b2d877ef39b3ac99f85a60aa854d
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.32.0.ebuild 
b/dev-python/imageio/imageio-2.32.0.ebuild
new file mode 100644
index ..4fd056e9c83f
--- /dev/null
+++ b/dev-python/imageio/imageio-2.32.0.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   =dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+   # requires pillow-heif, also possibly Internet
+   tests/test_pillow.py::test_heif_remote
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-10-23 Thread Michał Górny
commit: eff4445070ec04d027ef6bc786ae50d1f135f3cb
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 23 12:32:15 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 23 12:34:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eff44450

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  5 --
 dev-python/imageio/imageio-2.31.1.ebuild | 82 
 dev-python/imageio/imageio-2.31.2.ebuild | 82 
 dev-python/imageio/imageio-2.31.3.ebuild | 82 
 dev-python/imageio/imageio-2.31.4.ebuild | 82 
 dev-python/imageio/imageio-2.31.5.ebuild | 82 
 6 files changed, 415 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 3dd20fb74a2a..16e97ba37998 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,8 +1,3 @@
-DIST imageio-2.31.1.gh.tar.gz 411419 BLAKE2B 
4167e073daeb4a05cc88cfca78764468d33cb7d3d0ae8a75f43bb40312b44c1e5b0cd1416203addb853a8ada744ff97bdec3dc42685d6aec0ee8e4be839d8490
 SHA512 
8fa322816ddc041bb84a0b6ac9282fffdfb3894f3594e36c554cec9ae8d0898a7b005b9d43e7b4065fc6ca71301b63e95e46cb0a73ebedbd9004bca0146b535d
-DIST imageio-2.31.2.gh.tar.gz 411570 BLAKE2B 
bf2b92e7d9875ed6285c33ef04baa8b6bb798210bd0c1efcaf81f23a75641964dbd8f9139690928bbecbeae15cc9a7df63898e497b2234b3999dbe91c9b20d78
 SHA512 
9aff670c10a1cc67c3d71bea6014e5d5bb3da7a63037056f077266005bdc72ec39fcc6afdc5c130753019b00f7306963f133cbf663a3b59490401353e21f74bc
-DIST imageio-2.31.3.gh.tar.gz 411838 BLAKE2B 
923a21a211150d2356a2484b6c90dc9c210791c6978457bab54182d9d2ee7557d1935d1550439cd23c2b94b3280fdbed2b7561724784d2d8d331c349ae2c0b21
 SHA512 
9027cf171e2a0a6137c2b8b28ef864effaea230fce2cadabded12f95a57e627b86e715d8ca3ba7eb02c8d88aa237f0097232d5d8d7b3d4742cf8d35995704c5b
-DIST imageio-2.31.4.gh.tar.gz 412086 BLAKE2B 
a314d82f01ea71c421664f0f1e1c873d82d7bee34eed0de2331cadd7ea1b79d3ec1316816f91dcd758dad8937b7c3b200fa81a8ebd1149c195aefbb8ad4474ea
 SHA512 
c909cd301b85dd49dd18f3001433c07f098fa907763897d838a28c1db06626075163639a50193c735b30450ea95f3bdb00828a7b0fb526e18e07191fec5ce907
-DIST imageio-2.31.5.gh.tar.gz 412147 BLAKE2B 
7bdd7fa3b366395e54ef642859231736c8c77781b40662865789f420d07ed41a625b6bd968b8c073f7d253cc5a0c97c896013608f9daacc8552a7c2f78030860
 SHA512 
0bbbc5471126fb7ca46270c84841fd62cd72bf813e50aa2796e6fb5632657594d2d0a8018c90d81566074f76ccc1a35ca2cc7acec6afcb339b919106bf7d6d32
 DIST imageio-2.31.6.gh.tar.gz 412220 BLAKE2B 
b8eb95d8bf4fd1f8a0873581f401667e5ad4bb1a4cc43527e163e292cac6177e095c140857e8acdd483029f8d155a7e7bde33b41fc53d5945ff42e2685f74d03
 SHA512 
10f9fc7ac7ef1c3352659ec29c66684133c51350e33f16c617806f75b6137aeb8a580975ae430afab16f06843efa3e41b7e4ab042fb183d44f1a3e5c1d68efeb
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.31.1.ebuild 
b/dev-python/imageio/imageio-2.31.1.ebuild
deleted file mode 100644
index 07ef8bc8f8b1..
--- a/dev-python/imageio/imageio-2.31.1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-BIN_COMMIT=224074bca448815e421a59266864c23041531a42
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-   test? (
-   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
-   -> ${PN}-chelsea.png
-   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
-   -> ${PN}-cockatoo.mp4
-   )
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-10-23 Thread Michał Górny
commit: 54e33c8e687a4246577588e77286d254d063b063
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 23 12:32:02 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 23 12:34:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54e33c8e

dev-python/imageio: Bump to 2.31.6

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.31.6.ebuild | 83 
 2 files changed, 84 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index ff0657c3b8c0..3dd20fb74a2a 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -3,5 +3,6 @@ DIST imageio-2.31.2.gh.tar.gz 411570 BLAKE2B 
bf2b92e7d9875ed6285c33ef04baa8b6bb7
 DIST imageio-2.31.3.gh.tar.gz 411838 BLAKE2B 
923a21a211150d2356a2484b6c90dc9c210791c6978457bab54182d9d2ee7557d1935d1550439cd23c2b94b3280fdbed2b7561724784d2d8d331c349ae2c0b21
 SHA512 
9027cf171e2a0a6137c2b8b28ef864effaea230fce2cadabded12f95a57e627b86e715d8ca3ba7eb02c8d88aa237f0097232d5d8d7b3d4742cf8d35995704c5b
 DIST imageio-2.31.4.gh.tar.gz 412086 BLAKE2B 
a314d82f01ea71c421664f0f1e1c873d82d7bee34eed0de2331cadd7ea1b79d3ec1316816f91dcd758dad8937b7c3b200fa81a8ebd1149c195aefbb8ad4474ea
 SHA512 
c909cd301b85dd49dd18f3001433c07f098fa907763897d838a28c1db06626075163639a50193c735b30450ea95f3bdb00828a7b0fb526e18e07191fec5ce907
 DIST imageio-2.31.5.gh.tar.gz 412147 BLAKE2B 
7bdd7fa3b366395e54ef642859231736c8c77781b40662865789f420d07ed41a625b6bd968b8c073f7d253cc5a0c97c896013608f9daacc8552a7c2f78030860
 SHA512 
0bbbc5471126fb7ca46270c84841fd62cd72bf813e50aa2796e6fb5632657594d2d0a8018c90d81566074f76ccc1a35ca2cc7acec6afcb339b919106bf7d6d32
+DIST imageio-2.31.6.gh.tar.gz 412220 BLAKE2B 
b8eb95d8bf4fd1f8a0873581f401667e5ad4bb1a4cc43527e163e292cac6177e095c140857e8acdd483029f8d155a7e7bde33b41fc53d5945ff42e2685f74d03
 SHA512 
10f9fc7ac7ef1c3352659ec29c66684133c51350e33f16c617806f75b6137aeb8a580975ae430afab16f06843efa3e41b7e4ab042fb183d44f1a3e5c1d68efeb
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.31.6.ebuild 
b/dev-python/imageio/imageio-2.31.6.ebuild
new file mode 100644
index ..12482c30948d
--- /dev/null
+++ b/dev-python/imageio/imageio-2.31.6.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   =dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-10-01 Thread Michał Górny
commit: 54ba06e4f8791a8d50af3db12eca671c880d9b15
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct  2 04:40:42 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct  2 04:46:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54ba06e4

dev-python/imageio: Bump to 2.31.5

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.31.5.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index d96b2a6055eb..ff0657c3b8c0 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -2,5 +2,6 @@ DIST imageio-2.31.1.gh.tar.gz 411419 BLAKE2B 
4167e073daeb4a05cc88cfca78764468d33
 DIST imageio-2.31.2.gh.tar.gz 411570 BLAKE2B 
bf2b92e7d9875ed6285c33ef04baa8b6bb798210bd0c1efcaf81f23a75641964dbd8f9139690928bbecbeae15cc9a7df63898e497b2234b3999dbe91c9b20d78
 SHA512 
9aff670c10a1cc67c3d71bea6014e5d5bb3da7a63037056f077266005bdc72ec39fcc6afdc5c130753019b00f7306963f133cbf663a3b59490401353e21f74bc
 DIST imageio-2.31.3.gh.tar.gz 411838 BLAKE2B 
923a21a211150d2356a2484b6c90dc9c210791c6978457bab54182d9d2ee7557d1935d1550439cd23c2b94b3280fdbed2b7561724784d2d8d331c349ae2c0b21
 SHA512 
9027cf171e2a0a6137c2b8b28ef864effaea230fce2cadabded12f95a57e627b86e715d8ca3ba7eb02c8d88aa237f0097232d5d8d7b3d4742cf8d35995704c5b
 DIST imageio-2.31.4.gh.tar.gz 412086 BLAKE2B 
a314d82f01ea71c421664f0f1e1c873d82d7bee34eed0de2331cadd7ea1b79d3ec1316816f91dcd758dad8937b7c3b200fa81a8ebd1149c195aefbb8ad4474ea
 SHA512 
c909cd301b85dd49dd18f3001433c07f098fa907763897d838a28c1db06626075163639a50193c735b30450ea95f3bdb00828a7b0fb526e18e07191fec5ce907
+DIST imageio-2.31.5.gh.tar.gz 412147 BLAKE2B 
7bdd7fa3b366395e54ef642859231736c8c77781b40662865789f420d07ed41a625b6bd968b8c073f7d253cc5a0c97c896013608f9daacc8552a7c2f78030860
 SHA512 
0bbbc5471126fb7ca46270c84841fd62cd72bf813e50aa2796e6fb5632657594d2d0a8018c90d81566074f76ccc1a35ca2cc7acec6afcb339b919106bf7d6d32
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.31.5.ebuild 
b/dev-python/imageio/imageio-2.31.5.ebuild
new file mode 100644
index ..07ef8bc8f8b1
--- /dev/null
+++ b/dev-python/imageio/imageio-2.31.5.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-09-25 Thread Michał Górny
commit: 12ca698dc660c2c5b4bb5847a0cad946d49a3455
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Sep 26 04:32:12 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Sep 26 04:42:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12ca698d

dev-python/imageio: Bump to 2.31.4

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.31.4.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 5e17ad9b50bb..d96b2a6055eb 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,5 +1,6 @@
 DIST imageio-2.31.1.gh.tar.gz 411419 BLAKE2B 
4167e073daeb4a05cc88cfca78764468d33cb7d3d0ae8a75f43bb40312b44c1e5b0cd1416203addb853a8ada744ff97bdec3dc42685d6aec0ee8e4be839d8490
 SHA512 
8fa322816ddc041bb84a0b6ac9282fffdfb3894f3594e36c554cec9ae8d0898a7b005b9d43e7b4065fc6ca71301b63e95e46cb0a73ebedbd9004bca0146b535d
 DIST imageio-2.31.2.gh.tar.gz 411570 BLAKE2B 
bf2b92e7d9875ed6285c33ef04baa8b6bb798210bd0c1efcaf81f23a75641964dbd8f9139690928bbecbeae15cc9a7df63898e497b2234b3999dbe91c9b20d78
 SHA512 
9aff670c10a1cc67c3d71bea6014e5d5bb3da7a63037056f077266005bdc72ec39fcc6afdc5c130753019b00f7306963f133cbf663a3b59490401353e21f74bc
 DIST imageio-2.31.3.gh.tar.gz 411838 BLAKE2B 
923a21a211150d2356a2484b6c90dc9c210791c6978457bab54182d9d2ee7557d1935d1550439cd23c2b94b3280fdbed2b7561724784d2d8d331c349ae2c0b21
 SHA512 
9027cf171e2a0a6137c2b8b28ef864effaea230fce2cadabded12f95a57e627b86e715d8ca3ba7eb02c8d88aa237f0097232d5d8d7b3d4742cf8d35995704c5b
+DIST imageio-2.31.4.gh.tar.gz 412086 BLAKE2B 
a314d82f01ea71c421664f0f1e1c873d82d7bee34eed0de2331cadd7ea1b79d3ec1316816f91dcd758dad8937b7c3b200fa81a8ebd1149c195aefbb8ad4474ea
 SHA512 
c909cd301b85dd49dd18f3001433c07f098fa907763897d838a28c1db06626075163639a50193c735b30450ea95f3bdb00828a7b0fb526e18e07191fec5ce907
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.31.4.ebuild 
b/dev-python/imageio/imageio-2.31.4.ebuild
new file mode 100644
index ..07ef8bc8f8b1
--- /dev/null
+++ b/dev-python/imageio/imageio-2.31.4.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2023-09-13 Thread Michał Górny
commit: bef5fe98a9357c01615a4b5fec6f6b455158d951
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Sep 13 15:10:21 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Sep 13 15:47:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bef5fe98

dev-python/imageio-ffmpeg: Bump to 0.4.9

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio-ffmpeg/Manifest |  1 +
 .../imageio-ffmpeg/imageio-ffmpeg-0.4.9.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/imageio-ffmpeg/Manifest 
b/dev-python/imageio-ffmpeg/Manifest
index 001645b4d617..e63e7f0825f6 100644
--- a/dev-python/imageio-ffmpeg/Manifest
+++ b/dev-python/imageio-ffmpeg/Manifest
@@ -1 +1,2 @@
 DIST imageio-ffmpeg-0.4.8.gh.tar.gz 27124 BLAKE2B 
84ba7cbb46feae7e95b9d6f61e9b3289a753da7d78ad2848b593969c7f2a6f9e36307ca07a4b03f672fe8f61c697dcbf2dc236a2545b9ca9547fa6f174c96220
 SHA512 
aa6179d8c8cdbb49a60bea5ad570c6343d5e6b5a2678e88bacc484916ff806311c121143342f039ba9d41c8ac46ffbfe0adefe298e5eba0052d72c6e1707c4a6
+DIST imageio-ffmpeg-0.4.9.gh.tar.gz 27344 BLAKE2B 
f9bf6421859f8b17aee5300613a14de9883436aaa724b61b8068498f533cc24ab4c8372a6de6ce4ab49218abb84af8a35e29e1ccbe9c913fcdcf2db159f13a92
 SHA512 
ebf63b9ac9c733d4c12d3aa4c6a9e81dd0128795a040e65df03bfae00e3562a3976eaa2f4058562bbddc3f8d63d6bf2a38133de4d2ddb0d2dc62ffab2449e143

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9.ebuild
new file mode 100644
index ..caabdf39b65d
--- /dev/null
+++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="FFMPEG wrapper for Python"
+HOMEPAGE="
+   https://github.com/imageio/imageio-ffmpeg/
+   https://pypi.org/project/imageio-ffmpeg/
+"
+SRC_URI="
+   https://github.com/imageio/imageio-ffmpeg/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+# ffmpeg is used as an executable during runtime
+RDEPEND="
+   media-video/ffmpeg:*
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-09-04 Thread Michał Górny
commit: b730be73e0621e1f96e756778ab79fb729d7
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  4 12:56:52 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  4 12:56:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b730bddd

dev-python/imageio: Bump to 2.31.3

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.31.3.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 4cdd3a685e96..5e17ad9b50bb 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,5 @@
 DIST imageio-2.31.1.gh.tar.gz 411419 BLAKE2B 
4167e073daeb4a05cc88cfca78764468d33cb7d3d0ae8a75f43bb40312b44c1e5b0cd1416203addb853a8ada744ff97bdec3dc42685d6aec0ee8e4be839d8490
 SHA512 
8fa322816ddc041bb84a0b6ac9282fffdfb3894f3594e36c554cec9ae8d0898a7b005b9d43e7b4065fc6ca71301b63e95e46cb0a73ebedbd9004bca0146b535d
 DIST imageio-2.31.2.gh.tar.gz 411570 BLAKE2B 
bf2b92e7d9875ed6285c33ef04baa8b6bb798210bd0c1efcaf81f23a75641964dbd8f9139690928bbecbeae15cc9a7df63898e497b2234b3999dbe91c9b20d78
 SHA512 
9aff670c10a1cc67c3d71bea6014e5d5bb3da7a63037056f077266005bdc72ec39fcc6afdc5c130753019b00f7306963f133cbf663a3b59490401353e21f74bc
+DIST imageio-2.31.3.gh.tar.gz 411838 BLAKE2B 
923a21a211150d2356a2484b6c90dc9c210791c6978457bab54182d9d2ee7557d1935d1550439cd23c2b94b3280fdbed2b7561724784d2d8d331c349ae2c0b21
 SHA512 
9027cf171e2a0a6137c2b8b28ef864effaea230fce2cadabded12f95a57e627b86e715d8ca3ba7eb02c8d88aa237f0097232d5d8d7b3d4742cf8d35995704c5b
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.31.3.ebuild 
b/dev-python/imageio/imageio-2.31.3.ebuild
new file mode 100644
index ..07ef8bc8f8b1
--- /dev/null
+++ b/dev-python/imageio/imageio-2.31.3.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-08-27 Thread Michał Górny
commit: ef5a47800a43fcb35cb9a73710a0cf530c4859b9
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Aug 27 15:41:06 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Aug 27 15:59:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef5a4780

dev-python/imageio: Bump to 2.31.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.31.2.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index fc7d09f4768e..4cdd3a685e96 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.31.1.gh.tar.gz 411419 BLAKE2B 
4167e073daeb4a05cc88cfca78764468d33cb7d3d0ae8a75f43bb40312b44c1e5b0cd1416203addb853a8ada744ff97bdec3dc42685d6aec0ee8e4be839d8490
 SHA512 
8fa322816ddc041bb84a0b6ac9282fffdfb3894f3594e36c554cec9ae8d0898a7b005b9d43e7b4065fc6ca71301b63e95e46cb0a73ebedbd9004bca0146b535d
+DIST imageio-2.31.2.gh.tar.gz 411570 BLAKE2B 
bf2b92e7d9875ed6285c33ef04baa8b6bb798210bd0c1efcaf81f23a75641964dbd8f9139690928bbecbeae15cc9a7df63898e497b2234b3999dbe91c9b20d78
 SHA512 
9aff670c10a1cc67c3d71bea6014e5d5bb3da7a63037056f077266005bdc72ec39fcc6afdc5c130753019b00f7306963f133cbf663a3b59490401353e21f74bc
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.31.2.ebuild 
b/dev-python/imageio/imageio-2.31.2.ebuild
new file mode 100644
index ..07ef8bc8f8b1
--- /dev/null
+++ b/dev-python/imageio/imageio-2.31.2.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-07-24 Thread Michał Górny
commit: 446377cce5f0f11cbd3d7ec0bd0d9e5ac33f5c60
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul 24 11:18:57 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul 24 11:31:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=446377cc

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  6 ---
 dev-python/imageio/imageio-2.27.0.ebuild | 82 --
 dev-python/imageio/imageio-2.28.0.ebuild | 82 --
 dev-python/imageio/imageio-2.28.1.ebuild | 82 --
 dev-python/imageio/imageio-2.29.0.ebuild | 82 --
 dev-python/imageio/imageio-2.30.0.ebuild | 82 --
 dev-python/imageio/imageio-2.31.0.ebuild | 85 
 7 files changed, 501 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 34d79c74cd4a..fc7d09f4768e 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,9 +1,3 @@
-DIST imageio-2.27.0.gh.tar.gz 405391 BLAKE2B 
f013de16f460e04f5d30c7bcc3c64dc05cd2ca74b359ffe43f2f84e850bec907f899f8c2cc8bcd2a6594767746bd52bd8ae8f2f0c7bd9a3fe6b5450ef043830c
 SHA512 
28d42b59d5c59c679786fced4d3f616d8ac832da0f76da31337875404a8382e66ead6531e02ec94099f481ce84aad5271199b16eadef03bcd5db9978010a7132
-DIST imageio-2.28.0.gh.tar.gz 406506 BLAKE2B 
4021f872cd156461f216047d612ee985779e3cd1bb4d05e82ed12eb7582737ca60d1462a4d8fadeb56dd2aa197763f70f9aac5a1dced884276cf13bf43fdb990
 SHA512 
ba3aad7e32dd0468b9fc8ddc76c79b89be3e805a0d903b5fe6ff2279996db288b6809be6bc231f95751e1f55c8b12dedaa8b6c7635ba24a43f902f41f9bccf0d
-DIST imageio-2.28.1.gh.tar.gz 408022 BLAKE2B 
f2ee9f9e7daa875393c0f3fe11539cb50bc56e88aeb3d0362e1cf5aa01322c2a211779d2b142d95ed483a53a896605b2e0c557d5d05c4e295c8d3a403a392f31
 SHA512 
82b14db674de5b03b5f303acabfb94768278b635fe70fd09623c73ec5dcad5965ad7341a07cc41af71bbb0e5548bc4d79d20e510095a2bbaed50061b435bfc7a
-DIST imageio-2.29.0.gh.tar.gz 410455 BLAKE2B 
537f732383b7fa90b07c66c37c1f4f4d6f8934df990730b35c2232088f6a177c971247551c8019c9f4d5ee0b70fd0a7af308530368f2a29a01675585d8119bfd
 SHA512 
3214274ead4b84a88a3bf40eb6e6ae4b0b7fa2819ae87ff3aa2cf9b19b3c57b6217d88bf9a81609ea746ac534061642164c9c5780388a6f6c7c6f4431459d0a5
-DIST imageio-2.30.0.gh.tar.gz 410664 BLAKE2B 
d577b7031228528545575f605c76bf504ad035bb87057917e1761e55a4975a3b6a051787f494374c49db2e7a727a5c39cbb41753c1a92fcbc8d78dd2b28bc584
 SHA512 
a72e64a0240b72e56b6172dded67754890ffeda9b67f5740467e51bc9fa019b4c987baad0545c04ddcba8151f9484c49064d826e73fa03772dcf082eee7b514c
-DIST imageio-2.31.0.gh.tar.gz 411278 BLAKE2B 
b07b1196e2a8a7905e8017f55609049e3bc34af553d8c92070f4ecd0633aacbd63eb38e3c0bd9e7112e79155d2a10b1e213b652cde3ff0634116429eec8e946b
 SHA512 
1a410b8968ecb22be3a896cb93c749f1b690fbbd001719482fb6991cea639de8953a985a2ca99411687cbdafac4d39c4cd0613620ce95db660ce4ed4d28ec8fa
 DIST imageio-2.31.1.gh.tar.gz 411419 BLAKE2B 
4167e073daeb4a05cc88cfca78764468d33cb7d3d0ae8a75f43bb40312b44c1e5b0cd1416203addb853a8ada744ff97bdec3dc42685d6aec0ee8e4be839d8490
 SHA512 
8fa322816ddc041bb84a0b6ac9282fffdfb3894f3594e36c554cec9ae8d0898a7b005b9d43e7b4065fc6ca71301b63e95e46cb0a73ebedbd9004bca0146b535d
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.27.0.ebuild 
b/dev-python/imageio/imageio-2.27.0.ebuild
deleted file mode 100644
index 30875e33909b..
--- a/dev-python/imageio/imageio-2.27.0.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-BIN_COMMIT=224074bca448815e421a59266864c23041531a42
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-   test? (
-   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
-   -> ${PN}-chelsea.png
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-06-12 Thread Michał Górny
commit: db75c8a473b55ee3f440f15d8b95eeca00fc4ba1
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jun 12 11:02:28 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun 12 11:37:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db75c8a4

dev-python/imageio: Bump to 2.31.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.31.1.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index bf4276a8d9fd..34d79c74cd4a 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -4,5 +4,6 @@ DIST imageio-2.28.1.gh.tar.gz 408022 BLAKE2B 
f2ee9f9e7daa875393c0f3fe11539cb50bc
 DIST imageio-2.29.0.gh.tar.gz 410455 BLAKE2B 
537f732383b7fa90b07c66c37c1f4f4d6f8934df990730b35c2232088f6a177c971247551c8019c9f4d5ee0b70fd0a7af308530368f2a29a01675585d8119bfd
 SHA512 
3214274ead4b84a88a3bf40eb6e6ae4b0b7fa2819ae87ff3aa2cf9b19b3c57b6217d88bf9a81609ea746ac534061642164c9c5780388a6f6c7c6f4431459d0a5
 DIST imageio-2.30.0.gh.tar.gz 410664 BLAKE2B 
d577b7031228528545575f605c76bf504ad035bb87057917e1761e55a4975a3b6a051787f494374c49db2e7a727a5c39cbb41753c1a92fcbc8d78dd2b28bc584
 SHA512 
a72e64a0240b72e56b6172dded67754890ffeda9b67f5740467e51bc9fa019b4c987baad0545c04ddcba8151f9484c49064d826e73fa03772dcf082eee7b514c
 DIST imageio-2.31.0.gh.tar.gz 411278 BLAKE2B 
b07b1196e2a8a7905e8017f55609049e3bc34af553d8c92070f4ecd0633aacbd63eb38e3c0bd9e7112e79155d2a10b1e213b652cde3ff0634116429eec8e946b
 SHA512 
1a410b8968ecb22be3a896cb93c749f1b690fbbd001719482fb6991cea639de8953a985a2ca99411687cbdafac4d39c4cd0613620ce95db660ce4ed4d28ec8fa
+DIST imageio-2.31.1.gh.tar.gz 411419 BLAKE2B 
4167e073daeb4a05cc88cfca78764468d33cb7d3d0ae8a75f43bb40312b44c1e5b0cd1416203addb853a8ada744ff97bdec3dc42685d6aec0ee8e4be839d8490
 SHA512 
8fa322816ddc041bb84a0b6ac9282fffdfb3894f3594e36c554cec9ae8d0898a7b005b9d43e7b4065fc6ca71301b63e95e46cb0a73ebedbd9004bca0146b535d
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.31.1.ebuild 
b/dev-python/imageio/imageio-2.31.1.ebuild
new file mode 100644
index ..07ef8bc8f8b1
--- /dev/null
+++ b/dev-python/imageio/imageio-2.31.1.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-06-04 Thread Michał Górny
commit: 8abda2af9cc839d6379d4126d712efbd35e8c4a2
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jun  5 04:26:38 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun  5 05:06:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8abda2af

dev-python/imageio: Bump to 2.31.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.31.0.ebuild | 85 
 2 files changed, 86 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index b9561176afd5..bf4276a8d9fd 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -3,5 +3,6 @@ DIST imageio-2.28.0.gh.tar.gz 406506 BLAKE2B 
4021f872cd156461f216047d612ee985779
 DIST imageio-2.28.1.gh.tar.gz 408022 BLAKE2B 
f2ee9f9e7daa875393c0f3fe11539cb50bc56e88aeb3d0362e1cf5aa01322c2a211779d2b142d95ed483a53a896605b2e0c557d5d05c4e295c8d3a403a392f31
 SHA512 
82b14db674de5b03b5f303acabfb94768278b635fe70fd09623c73ec5dcad5965ad7341a07cc41af71bbb0e5548bc4d79d20e510095a2bbaed50061b435bfc7a
 DIST imageio-2.29.0.gh.tar.gz 410455 BLAKE2B 
537f732383b7fa90b07c66c37c1f4f4d6f8934df990730b35c2232088f6a177c971247551c8019c9f4d5ee0b70fd0a7af308530368f2a29a01675585d8119bfd
 SHA512 
3214274ead4b84a88a3bf40eb6e6ae4b0b7fa2819ae87ff3aa2cf9b19b3c57b6217d88bf9a81609ea746ac534061642164c9c5780388a6f6c7c6f4431459d0a5
 DIST imageio-2.30.0.gh.tar.gz 410664 BLAKE2B 
d577b7031228528545575f605c76bf504ad035bb87057917e1761e55a4975a3b6a051787f494374c49db2e7a727a5c39cbb41753c1a92fcbc8d78dd2b28bc584
 SHA512 
a72e64a0240b72e56b6172dded67754890ffeda9b67f5740467e51bc9fa019b4c987baad0545c04ddcba8151f9484c49064d826e73fa03772dcf082eee7b514c
+DIST imageio-2.31.0.gh.tar.gz 411278 BLAKE2B 
b07b1196e2a8a7905e8017f55609049e3bc34af553d8c92070f4ecd0633aacbd63eb38e3c0bd9e7112e79155d2a10b1e213b652cde3ff0634116429eec8e946b
 SHA512 
1a410b8968ecb22be3a896cb93c749f1b690fbbd001719482fb6991cea639de8953a985a2ca99411687cbdafac4d39c4cd0613620ce95db660ce4ed4d28ec8fa
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.31.0.ebuild 
b/dev-python/imageio/imageio-2.31.0.ebuild
new file mode 100644
index ..cd12185b3005
--- /dev/null
+++ b/dev-python/imageio/imageio-2.31.0.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2023-05-31 Thread Michał Górny
commit: 7f63f97b1e150957c7f25ceecb3bf321c36291c1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  1 04:02:37 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  1 04:07:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f63f97b

dev-python/imageio-ffmpeg: Enable py3.12

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
index 8f1c10e146b8..5270c885eb44 100644
--- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
+++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2023-05-29 Thread Sam James
commit: d515e6455212a6ad85cbf3cc4d147ee54c958482
Author: Sam James  gentoo  org>
AuthorDate: Tue May 30 00:19:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May 30 00:20:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d515e645

dev-python/imageio-ffmpeg: Keyword 0.4.8 arm64, #906561

Signed-off-by: Sam James  gentoo.org>

 dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
index ca982bebfc7e..8f1c10e146b8 100644
--- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
+++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 PROPERTIES="test_network"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-05-29 Thread Sam James
commit: 53992e193812eecee66fdaf51f28ef88a3155b40
Author: Sam James  gentoo  org>
AuthorDate: Tue May 30 00:19:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May 30 00:20:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53992e19

dev-python/imageio: Keyword 2.30.0 arm64, #906561

Signed-off-by: Sam James  gentoo.org>

 dev-python/imageio/imageio-2.30.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/imageio/imageio-2.30.0.ebuild 
b/dev-python/imageio/imageio-2.30.0.ebuild
index 30875e33909b..07ef8bc8f8b1 100644
--- a/dev-python/imageio/imageio-2.30.0.ebuild
+++ b/dev-python/imageio/imageio-2.30.0.ebuild
@@ -28,7 +28,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 # over 50% of tests rely on Internet
 PROPERTIES="test_network"
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-05-28 Thread Michał Górny
commit: cd52a15ca6275cc09c246a1f61f8bdb910a8e8fa
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 29 05:25:44 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 29 05:49:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd52a15c

dev-python/imageio: Bump to 2.30.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.30.0.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index e3bc5a358deb..b9561176afd5 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -2,5 +2,6 @@ DIST imageio-2.27.0.gh.tar.gz 405391 BLAKE2B 
f013de16f460e04f5d30c7bcc3c64dc05cd
 DIST imageio-2.28.0.gh.tar.gz 406506 BLAKE2B 
4021f872cd156461f216047d612ee985779e3cd1bb4d05e82ed12eb7582737ca60d1462a4d8fadeb56dd2aa197763f70f9aac5a1dced884276cf13bf43fdb990
 SHA512 
ba3aad7e32dd0468b9fc8ddc76c79b89be3e805a0d903b5fe6ff2279996db288b6809be6bc231f95751e1f55c8b12dedaa8b6c7635ba24a43f902f41f9bccf0d
 DIST imageio-2.28.1.gh.tar.gz 408022 BLAKE2B 
f2ee9f9e7daa875393c0f3fe11539cb50bc56e88aeb3d0362e1cf5aa01322c2a211779d2b142d95ed483a53a896605b2e0c557d5d05c4e295c8d3a403a392f31
 SHA512 
82b14db674de5b03b5f303acabfb94768278b635fe70fd09623c73ec5dcad5965ad7341a07cc41af71bbb0e5548bc4d79d20e510095a2bbaed50061b435bfc7a
 DIST imageio-2.29.0.gh.tar.gz 410455 BLAKE2B 
537f732383b7fa90b07c66c37c1f4f4d6f8934df990730b35c2232088f6a177c971247551c8019c9f4d5ee0b70fd0a7af308530368f2a29a01675585d8119bfd
 SHA512 
3214274ead4b84a88a3bf40eb6e6ae4b0b7fa2819ae87ff3aa2cf9b19b3c57b6217d88bf9a81609ea746ac534061642164c9c5780388a6f6c7c6f4431459d0a5
+DIST imageio-2.30.0.gh.tar.gz 410664 BLAKE2B 
d577b7031228528545575f605c76bf504ad035bb87057917e1761e55a4975a3b6a051787f494374c49db2e7a727a5c39cbb41753c1a92fcbc8d78dd2b28bc584
 SHA512 
a72e64a0240b72e56b6172dded67754890ffeda9b67f5740467e51bc9fa019b4c987baad0545c04ddcba8151f9484c49064d826e73fa03772dcf082eee7b514c
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.30.0.ebuild 
b/dev-python/imageio/imageio-2.30.0.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.30.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-05-24 Thread Michał Górny
commit: b4d024c272d2d92070af9beabc0f0903e2f7c20e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 24 05:55:37 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 24 07:01:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4d024c2

dev-python/imageio: Bump to 2.29.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.29.0.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 3c8f0527759f..e3bc5a358deb 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,5 +1,6 @@
 DIST imageio-2.27.0.gh.tar.gz 405391 BLAKE2B 
f013de16f460e04f5d30c7bcc3c64dc05cd2ca74b359ffe43f2f84e850bec907f899f8c2cc8bcd2a6594767746bd52bd8ae8f2f0c7bd9a3fe6b5450ef043830c
 SHA512 
28d42b59d5c59c679786fced4d3f616d8ac832da0f76da31337875404a8382e66ead6531e02ec94099f481ce84aad5271199b16eadef03bcd5db9978010a7132
 DIST imageio-2.28.0.gh.tar.gz 406506 BLAKE2B 
4021f872cd156461f216047d612ee985779e3cd1bb4d05e82ed12eb7582737ca60d1462a4d8fadeb56dd2aa197763f70f9aac5a1dced884276cf13bf43fdb990
 SHA512 
ba3aad7e32dd0468b9fc8ddc76c79b89be3e805a0d903b5fe6ff2279996db288b6809be6bc231f95751e1f55c8b12dedaa8b6c7635ba24a43f902f41f9bccf0d
 DIST imageio-2.28.1.gh.tar.gz 408022 BLAKE2B 
f2ee9f9e7daa875393c0f3fe11539cb50bc56e88aeb3d0362e1cf5aa01322c2a211779d2b142d95ed483a53a896605b2e0c557d5d05c4e295c8d3a403a392f31
 SHA512 
82b14db674de5b03b5f303acabfb94768278b635fe70fd09623c73ec5dcad5965ad7341a07cc41af71bbb0e5548bc4d79d20e510095a2bbaed50061b435bfc7a
+DIST imageio-2.29.0.gh.tar.gz 410455 BLAKE2B 
537f732383b7fa90b07c66c37c1f4f4d6f8934df990730b35c2232088f6a177c971247551c8019c9f4d5ee0b70fd0a7af308530368f2a29a01675585d8119bfd
 SHA512 
3214274ead4b84a88a3bf40eb6e6ae4b0b7fa2819ae87ff3aa2cf9b19b3c57b6217d88bf9a81609ea746ac534061642164c9c5780388a6f6c7c6f4431459d0a5
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.29.0.ebuild 
b/dev-python/imageio/imageio-2.29.0.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.29.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-05-01 Thread Michał Górny
commit: 2ec493d8e86a92bf3854b79049624edd1c6a4b9b
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  2 02:51:24 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May  2 03:04:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ec493d8

dev-python/imageio: Bump to 2.28.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.28.1.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index b083415d713c..3c8f0527759f 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,5 @@
 DIST imageio-2.27.0.gh.tar.gz 405391 BLAKE2B 
f013de16f460e04f5d30c7bcc3c64dc05cd2ca74b359ffe43f2f84e850bec907f899f8c2cc8bcd2a6594767746bd52bd8ae8f2f0c7bd9a3fe6b5450ef043830c
 SHA512 
28d42b59d5c59c679786fced4d3f616d8ac832da0f76da31337875404a8382e66ead6531e02ec94099f481ce84aad5271199b16eadef03bcd5db9978010a7132
 DIST imageio-2.28.0.gh.tar.gz 406506 BLAKE2B 
4021f872cd156461f216047d612ee985779e3cd1bb4d05e82ed12eb7582737ca60d1462a4d8fadeb56dd2aa197763f70f9aac5a1dced884276cf13bf43fdb990
 SHA512 
ba3aad7e32dd0468b9fc8ddc76c79b89be3e805a0d903b5fe6ff2279996db288b6809be6bc231f95751e1f55c8b12dedaa8b6c7635ba24a43f902f41f9bccf0d
+DIST imageio-2.28.1.gh.tar.gz 408022 BLAKE2B 
f2ee9f9e7daa875393c0f3fe11539cb50bc56e88aeb3d0362e1cf5aa01322c2a211779d2b142d95ed483a53a896605b2e0c557d5d05c4e295c8d3a403a392f31
 SHA512 
82b14db674de5b03b5f303acabfb94768278b635fe70fd09623c73ec5dcad5965ad7341a07cc41af71bbb0e5548bc4d79d20e510095a2bbaed50061b435bfc7a
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.28.1.ebuild 
b/dev-python/imageio/imageio-2.28.1.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.28.1.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-04-23 Thread Michał Górny
commit: e4dc528280c5a5378b2cd68aff14dcb2467b00d8
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr 24 04:28:10 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr 24 05:57:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4dc5282

dev-python/imageio: Bump to 2.28.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.28.0.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 46b6a0d2a0fd..b083415d713c 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.27.0.gh.tar.gz 405391 BLAKE2B 
f013de16f460e04f5d30c7bcc3c64dc05cd2ca74b359ffe43f2f84e850bec907f899f8c2cc8bcd2a6594767746bd52bd8ae8f2f0c7bd9a3fe6b5450ef043830c
 SHA512 
28d42b59d5c59c679786fced4d3f616d8ac832da0f76da31337875404a8382e66ead6531e02ec94099f481ce84aad5271199b16eadef03bcd5db9978010a7132
+DIST imageio-2.28.0.gh.tar.gz 406506 BLAKE2B 
4021f872cd156461f216047d612ee985779e3cd1bb4d05e82ed12eb7582737ca60d1462a4d8fadeb56dd2aa197763f70f9aac5a1dced884276cf13bf43fdb990
 SHA512 
ba3aad7e32dd0468b9fc8ddc76c79b89be3e805a0d903b5fe6ff2279996db288b6809be6bc231f95751e1f55c8b12dedaa8b6c7635ba24a43f902f41f9bccf0d
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.28.0.ebuild 
b/dev-python/imageio/imageio-2.28.0.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.28.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-03-26 Thread Michał Górny
commit: b72920cccacb0fe541b344c21db375c0e6afeac5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 27 03:30:54 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 27 03:30:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b72920cc

dev-python/imageio: Bump to 2.27.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.27.0.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index bd8c8d32b18e..24a733b5a4dd 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,5 @@
 DIST imageio-2.26.0.gh.tar.gz 403652 BLAKE2B 
2f1948b1cee03ef4fdd71489923a1ea5b0c364fb5f000d79e1d309042184a6bb267a323bd19fce85bf47857245eb4be5283f0b3df65857d7cac57c24930ea409
 SHA512 
6ad8ce0395033571c0d918dbe03ffeab0e43b29d402bc91a229d3ffd689eae3d01aa09dec386d03fe028f6138887883cfda4e0a769f523ba9f6c3e3041a0cb7f
 DIST imageio-2.26.1.gh.tar.gz 404916 BLAKE2B 
683ffb38c089e691c9647785f28fed616e8b60795a05fa29a684d30fff35e6021888b4f4ea75d8035dbfc3c3f5e84c241eefdf7d4a08555bdf78de7433a1fc11
 SHA512 
90976423d967b7cd0874fcf6ed3c7d51db6fea450859a1a1a302aabb7d971b65cceec0fdaf8e23f99a3fcceaea827c090e01b4b7ad8e7813e8db33150c14ba29
+DIST imageio-2.27.0.gh.tar.gz 405391 BLAKE2B 
f013de16f460e04f5d30c7bcc3c64dc05cd2ca74b359ffe43f2f84e850bec907f899f8c2cc8bcd2a6594767746bd52bd8ae8f2f0c7bd9a3fe6b5450ef043830c
 SHA512 
28d42b59d5c59c679786fced4d3f616d8ac832da0f76da31337875404a8382e66ead6531e02ec94099f481ce84aad5271199b16eadef03bcd5db9978010a7132
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.27.0.ebuild 
b/dev-python/imageio/imageio-2.27.0.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.27.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-03-21 Thread Michał Górny
commit: 83f78fa968676a486317d330a793a2ed29419ba0
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 21 06:36:39 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 21 06:49:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83f78fa9

dev-python/imageio: Bump to 2.26.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.26.1.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 7cfb08a63516..bd8c8d32b18e 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.26.0.gh.tar.gz 403652 BLAKE2B 
2f1948b1cee03ef4fdd71489923a1ea5b0c364fb5f000d79e1d309042184a6bb267a323bd19fce85bf47857245eb4be5283f0b3df65857d7cac57c24930ea409
 SHA512 
6ad8ce0395033571c0d918dbe03ffeab0e43b29d402bc91a229d3ffd689eae3d01aa09dec386d03fe028f6138887883cfda4e0a769f523ba9f6c3e3041a0cb7f
+DIST imageio-2.26.1.gh.tar.gz 404916 BLAKE2B 
683ffb38c089e691c9647785f28fed616e8b60795a05fa29a684d30fff35e6021888b4f4ea75d8035dbfc3c3f5e84c241eefdf7d4a08555bdf78de7433a1fc11
 SHA512 
90976423d967b7cd0874fcf6ed3c7d51db6fea450859a1a1a302aabb7d971b65cceec0fdaf8e23f99a3fcceaea827c090e01b4b7ad8e7813e8db33150c14ba29
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.26.1.ebuild 
b/dev-python/imageio/imageio-2.26.1.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.26.1.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-02-26 Thread Michał Górny
commit: 596ad8dd2327c8a2dfc486b52cf3b96abb0b4fd4
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 27 04:56:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 27 05:38:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=596ad8dd

dev-python/imageio: Bump to 2.26.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.26.0.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index f202d205d878..f7e12bde34b4 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,5 @@
 DIST imageio-2.25.0.gh.tar.gz 401690 BLAKE2B 
3c7faa7aae06b098a171ad168cd28d14abbc32d519a373ab77c4bec30913faa7baafc2f0b4721a80ee72a6e7b479c12fe27e707c4a90bcaaf2ebceb2b4b39577
 SHA512 
e887d8572f4698b6cd6fad832054cbce2550a4165e65704c2f990b500234cc938c68b9840bc8961a7258cf4cfa91c3ac909c7965de689b00b04195ab1120850c
 DIST imageio-2.25.1.gh.tar.gz 402105 BLAKE2B 
8d7f5881fecf2b5bd5fa0534f4f979db252a1541fce518a4c5acdf7592c8e752dc49e0025d7319fc27588cb457c4f5b05e9a91f510039b95371ac31bee9fd241
 SHA512 
0473eb10c00e4ceff858394d3bde3b7c42fc7f2c6692ab3f7a1e20c67ab84fed3129948eff5aef0c43bf750906c3b3b8acca75fcbba855b6b9f725258df4241f
+DIST imageio-2.26.0.gh.tar.gz 403652 BLAKE2B 
2f1948b1cee03ef4fdd71489923a1ea5b0c364fb5f000d79e1d309042184a6bb267a323bd19fce85bf47857245eb4be5283f0b3df65857d7cac57c24930ea409
 SHA512 
6ad8ce0395033571c0d918dbe03ffeab0e43b29d402bc91a229d3ffd689eae3d01aa09dec386d03fe028f6138887883cfda4e0a769f523ba9f6c3e3041a0cb7f
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.26.0.ebuild 
b/dev-python/imageio/imageio-2.26.0.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.26.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-02-12 Thread Michał Górny
commit: 18f7ee76ef7e79fd7dd697884668c2694ac97356
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 13 05:42:54 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 13 06:05:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f7ee76

dev-python/imageio: Bump to 2.25.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.25.1.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 2ea982d7c270..f202d205d878 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.25.0.gh.tar.gz 401690 BLAKE2B 
3c7faa7aae06b098a171ad168cd28d14abbc32d519a373ab77c4bec30913faa7baafc2f0b4721a80ee72a6e7b479c12fe27e707c4a90bcaaf2ebceb2b4b39577
 SHA512 
e887d8572f4698b6cd6fad832054cbce2550a4165e65704c2f990b500234cc938c68b9840bc8961a7258cf4cfa91c3ac909c7965de689b00b04195ab1120850c
+DIST imageio-2.25.1.gh.tar.gz 402105 BLAKE2B 
8d7f5881fecf2b5bd5fa0534f4f979db252a1541fce518a4c5acdf7592c8e752dc49e0025d7319fc27588cb457c4f5b05e9a91f510039b95371ac31bee9fd241
 SHA512 
0473eb10c00e4ceff858394d3bde3b7c42fc7f2c6692ab3f7a1e20c67ab84fed3129948eff5aef0c43bf750906c3b3b8acca75fcbba855b6b9f725258df4241f
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.25.1.ebuild 
b/dev-python/imageio/imageio-2.25.1.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.25.1.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-01-22 Thread Michał Górny
commit: 95df386f421908757388f3b1e224bda892d4afab
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 23 06:55:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 23 07:34:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95df386f

dev-python/imageio: Bump to 2.25.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.25.0.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index ec085a048981..ba5fdeaf0678 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,5 @@
 DIST imageio-2.23.0.gh.tar.gz 395916 BLAKE2B 
2ca40f70dfc3f79084933a22ab2f841ecee0c5f0768dd73ea264a366853cc582111e677fb1521f74f3b2ff516f0ab51de013e8e013dafbe5cf0386faf21b75f5
 SHA512 
dcdea9fb245495b0882630f18bd5503c4e36fa3f3b50dc58712a8a246424855cd0f280e026889eb8a6a4f7d833792f87d373f645e59ff39fb81514ada79f4248
 DIST imageio-2.24.0.gh.tar.gz 401266 BLAKE2B 
a5b247304edc53288d1589b2ff9e6efcd221f56581624bf0df6c18171841aebf334e1394110470d18c7fc33a4f5b27b52c7e76e51d2129fddefbb73932e02cb5
 SHA512 
ec86136701945deeb79db64a8e0787234f9d4b62e30be22a8d6f53d4daa2abaa6d2b1a95eaf7f6f97559f99427734cd4b85145feed5fbb53356d902cc391a998
+DIST imageio-2.25.0.gh.tar.gz 401690 BLAKE2B 
3c7faa7aae06b098a171ad168cd28d14abbc32d519a373ab77c4bec30913faa7baafc2f0b4721a80ee72a6e7b479c12fe27e707c4a90bcaaf2ebceb2b4b39577
 SHA512 
e887d8572f4698b6cd6fad832054cbce2550a4165e65704c2f990b500234cc938c68b9840bc8961a7258cf4cfa91c3ac909c7965de689b00b04195ab1120850c
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.25.0.ebuild 
b/dev-python/imageio/imageio-2.25.0.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.25.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-01-10 Thread Arthur Zamarin
commit: 9702d29ef0c7e008595e8050b7d9e41f6572477d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jan 10 10:50:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jan 10 11:03:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9702d29e

dev-python/imageio: drop 2.22.4, 2.23.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/Manifest  |  1 -
 dev-python/imageio/imageio-2.22.4.ebuild | 82 
 dev-python/imageio/imageio-2.23.0.ebuild | 82 
 3 files changed, 165 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 97993cfe366c..ec085a048981 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,3 @@
-DIST imageio-2.22.4.gh.tar.gz 395090 BLAKE2B 
8980516e26c3a8d128937046582b796264616922f10c5a347ec9b718c773666fe431b2426abbf1de2c99a27cfdc1d7747727c23b2dd665ae88e405746966896e
 SHA512 
38339e7da4ae238cf91aae4ec500899edf7547e80029941550ea73c6b0ba926eac21f4a234833ce52078426c660409558935b72775f3131a390f913fefdb0df1
 DIST imageio-2.23.0.gh.tar.gz 395916 BLAKE2B 
2ca40f70dfc3f79084933a22ab2f841ecee0c5f0768dd73ea264a366853cc582111e677fb1521f74f3b2ff516f0ab51de013e8e013dafbe5cf0386faf21b75f5
 SHA512 
dcdea9fb245495b0882630f18bd5503c4e36fa3f3b50dc58712a8a246424855cd0f280e026889eb8a6a4f7d833792f87d373f645e59ff39fb81514ada79f4248
 DIST imageio-2.24.0.gh.tar.gz 401266 BLAKE2B 
a5b247304edc53288d1589b2ff9e6efcd221f56581624bf0df6c18171841aebf334e1394110470d18c7fc33a4f5b27b52c7e76e51d2129fddefbb73932e02cb5
 SHA512 
ec86136701945deeb79db64a8e0787234f9d4b62e30be22a8d6f53d4daa2abaa6d2b1a95eaf7f6f97559f99427734cd4b85145feed5fbb53356d902cc391a998
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27

diff --git a/dev-python/imageio/imageio-2.22.4.ebuild 
b/dev-python/imageio/imageio-2.22.4.ebuild
deleted file mode 100644
index bd86d3699c16..
--- a/dev-python/imageio/imageio-2.22.4.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-BIN_COMMIT=224074bca448815e421a59266864c23041531a42
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-   test? (
-   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
-   -> ${PN}-chelsea.png
-   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
-   -> ${PN}-cockatoo.mp4
-   )
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   local PATCHES=(
-   # block silently downloading vulnerable libraries from the 
Internet
-   "${FILESDIR}"/imageio-2.22.0-block-download.patch
-   )
-
-   if use test; then
-   mkdir -p "${HOME}"/.imageio/images || die
-   local i
-   for i in chelsea.png cockatoo.mp4; do
-   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
-   done
-   fi
-
-   distutils-r1_src_prepare
-}
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Tries to download ffmpeg binary ?!
-   tests/test_ffmpeg.py::test_get_exe_installed
-   # blocked by our patch
-   tests/test_core.py::test_fetching
-   tests/test_core.py::test_request
-   # known broken
-   # https://github.com/imageio/imageio/issues/890
-   tests/test_freeimage.py::test_exr_write
-)

diff --git a/dev-python/imageio/imageio-2.23.0.ebuild 
b/dev-python/imageio/imageio-2.23.0.ebuild
deleted file mode 100644
index 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2023-01-09 Thread Michał Górny
commit: 20181e4f0f48a833c1c6b551cc0b0fcb7cb13278
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jan 10 05:11:12 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jan 10 06:21:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20181e4f

dev-python/imageio-ffmpeg: Bump to 0.4.8

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio-ffmpeg/Manifest |  1 +
 .../imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/imageio-ffmpeg/Manifest 
b/dev-python/imageio-ffmpeg/Manifest
index f35240db3079..8afaada236e7 100644
--- a/dev-python/imageio-ffmpeg/Manifest
+++ b/dev-python/imageio-ffmpeg/Manifest
@@ -1 +1,2 @@
 DIST imageio-ffmpeg-0.4.7.gh.tar.gz 26301 BLAKE2B 
b794c4c69e43304e089cbab61ff70f3d7d305a515163d0cd0ee4fca678fbec029f01dda1559d6e10e287e56937d6c8f9b52c816df99977034867997c1e392c06
 SHA512 
4e97bd1258aaa43304a3240460f34a0a4b98340c1dc57f673644af36724935f9f2905378b38626b766e7f609fcbda48d2c58402dc3ef9c48c596936a4bd2cc06
+DIST imageio-ffmpeg-0.4.8.gh.tar.gz 27124 BLAKE2B 
84ba7cbb46feae7e95b9d6f61e9b3289a753da7d78ad2848b593969c7f2a6f9e36307ca07a4b03f672fe8f61c697dcbf2dc236a2545b9ca9547fa6f174c96220
 SHA512 
aa6179d8c8cdbb49a60bea5ad570c6343d5e6b5a2678e88bacc484916ff806311c121143342f039ba9d41c8ac46ffbfe0adefe298e5eba0052d72c6e1707c4a6

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
new file mode 100644
index ..3a3d66c19a5e
--- /dev/null
+++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.8.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="FFMPEG wrapper for Python"
+HOMEPAGE="
+   https://github.com/imageio/imageio-ffmpeg/
+   https://pypi.org/project/imageio-ffmpeg/
+"
+SRC_URI="
+   https://github.com/imageio/imageio-ffmpeg/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+# ffmpeg is used as an executable during runtime
+RDEPEND="
+   media-video/ffmpeg:*
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -e '/setup_requires/d' -i setup.py || die
+
+   distutils-r1_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2023-01-09 Thread Michał Górny
commit: 53c50f03cbe9b41ca5b2a32b8bdf48d1736ba1fe
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan  9 07:00:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan  9 08:09:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c50f03

dev-python/imageio: Bump to 2.24.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.24.0.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index aba4231e2a8c..97993cfe366c 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,5 @@
 DIST imageio-2.22.4.gh.tar.gz 395090 BLAKE2B 
8980516e26c3a8d128937046582b796264616922f10c5a347ec9b718c773666fe431b2426abbf1de2c99a27cfdc1d7747727c23b2dd665ae88e405746966896e
 SHA512 
38339e7da4ae238cf91aae4ec500899edf7547e80029941550ea73c6b0ba926eac21f4a234833ce52078426c660409558935b72775f3131a390f913fefdb0df1
 DIST imageio-2.23.0.gh.tar.gz 395916 BLAKE2B 
2ca40f70dfc3f79084933a22ab2f841ecee0c5f0768dd73ea264a366853cc582111e677fb1521f74f3b2ff516f0ab51de013e8e013dafbe5cf0386faf21b75f5
 SHA512 
dcdea9fb245495b0882630f18bd5503c4e36fa3f3b50dc58712a8a246424855cd0f280e026889eb8a6a4f7d833792f87d373f645e59ff39fb81514ada79f4248
+DIST imageio-2.24.0.gh.tar.gz 401266 BLAKE2B 
a5b247304edc53288d1589b2ff9e6efcd221f56581624bf0df6c18171841aebf334e1394110470d18c7fc33a4f5b27b52c7e76e51d2129fddefbb73932e02cb5
 SHA512 
ec86136701945deeb79db64a8e0787234f9d4b62e30be22a8d6f53d4daa2abaa6d2b1a95eaf7f6f97559f99427734cd4b85145feed5fbb53356d902cc391a998
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.24.0.ebuild 
b/dev-python/imageio/imageio-2.24.0.ebuild
new file mode 100644
index ..30875e33909b
--- /dev/null
+++ b/dev-python/imageio/imageio-2.24.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-12-20 Thread Michał Górny
commit: 1ad0ac356521052aeca8701f48917caefc7a566f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec 21 05:58:00 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec 21 06:45:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ad0ac35

dev-python/imageio: Disable Python < 3.10

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/imageio-2.23.0-r1.ebuild | 82 +
 1 file changed, 82 insertions(+)

diff --git a/dev-python/imageio/imageio-2.23.0-r1.ebuild 
b/dev-python/imageio/imageio-2.23.0-r1.ebuild
new file mode 100644
index ..bb2af9ba93b3
--- /dev/null
+++ b/dev-python/imageio/imageio-2.23.0-r1.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-12-18 Thread Michał Górny
commit: a999e501cd7072c4b721d25ebc03bd1892e413f0
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Dec 19 06:16:12 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Dec 19 06:46:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a999e501

dev-python/imageio: Bump to 2.23.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.23.0.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 091fcf27bf90..aba4231e2a8c 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.22.4.gh.tar.gz 395090 BLAKE2B 
8980516e26c3a8d128937046582b796264616922f10c5a347ec9b718c773666fe431b2426abbf1de2c99a27cfdc1d7747727c23b2dd665ae88e405746966896e
 SHA512 
38339e7da4ae238cf91aae4ec500899edf7547e80029941550ea73c6b0ba926eac21f4a234833ce52078426c660409558935b72775f3131a390f913fefdb0df1
+DIST imageio-2.23.0.gh.tar.gz 395916 BLAKE2B 
2ca40f70dfc3f79084933a22ab2f841ecee0c5f0768dd73ea264a366853cc582111e677fb1521f74f3b2ff516f0ab51de013e8e013dafbe5cf0386faf21b75f5
 SHA512 
dcdea9fb245495b0882630f18bd5503c4e36fa3f3b50dc58712a8a246424855cd0f280e026889eb8a6a4f7d833792f87d373f645e59ff39fb81514ada79f4248
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.23.0.ebuild 
b/dev-python/imageio/imageio-2.23.0.ebuild
new file mode 100644
index ..bd86d3699c16
--- /dev/null
+++ b/dev-python/imageio/imageio-2.23.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-11-13 Thread Michał Górny
commit: ebfa7c7ed7b5a139ec60a1da4eec5864e914d8ba
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov 14 04:36:44 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov 14 04:36:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebfa7c7e

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest |  1 -
 dev-python/imageio/imageio-2.22.0-r1.ebuild | 81 -
 2 files changed, 82 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 493404b8f78b..091fcf27bf90 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,3 @@
-DIST imageio-2.22.0.gh.tar.gz 394144 BLAKE2B 
957edbeaad6be459ff865eed3159b0f7776e3dd0782e0380bfe2c40362d0c08ccc8f29a2f38a8427deb263554495b73cc4df641e569b9d33700fcc6ed1395396
 SHA512 
23d606e32ab2bdc306a4b9d17120e5eda8c8a4fd96d840181afecd6e35f6649621740608f0286d2a5462822acc7ef4e1e7f1e9076882ce975f1da717b136c8c4
 DIST imageio-2.22.4.gh.tar.gz 395090 BLAKE2B 
8980516e26c3a8d128937046582b796264616922f10c5a347ec9b718c773666fe431b2426abbf1de2c99a27cfdc1d7747727c23b2dd665ae88e405746966896e
 SHA512 
38339e7da4ae238cf91aae4ec500899edf7547e80029941550ea73c6b0ba926eac21f4a234833ce52078426c660409558935b72775f3131a390f913fefdb0df1
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.22.0-r1.ebuild 
b/dev-python/imageio/imageio-2.22.0-r1.ebuild
deleted file mode 100644
index 3b03357eb4e7..
--- a/dev-python/imageio/imageio-2.22.0-r1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-BIN_COMMIT=224074bca448815e421a59266864c23041531a42
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-   test? (
-   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
-   -> ${PN}-chelsea.png
-   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
-   -> ${PN}-cockatoo.mp4
-   )
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   local PATCHES=(
-   # block silently downloading vulnerable libraries from the 
Internet
-   "${FILESDIR}"/imageio-2.22.0-block-download.patch
-   )
-
-   if use test; then
-   mkdir -p "${HOME}"/.imageio/images || die
-   local i
-   for i in chelsea.png cockatoo.mp4; do
-   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
-   done
-   fi
-
-   distutils-r1_src_prepare
-}
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Tries to download ffmpeg binary ?!
-   tests/test_ffmpeg.py::test_get_exe_installed
-   # blocked by our patch
-   tests/test_core.py::test_fetching
-   tests/test_core.py::test_request
-   # removed upstream
-   tests/test_pillow.py::test_png_remote
-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-11-06 Thread Michał Górny
commit: 250db8593eaa41d5d343bcdafe663bb047771ab2
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov  7 05:21:57 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov  7 05:21:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=250db859

dev-python/imageio: Bump to 2.22.4

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.22.4.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index ae59f0904f03..493404b8f78b 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.22.0.gh.tar.gz 394144 BLAKE2B 
957edbeaad6be459ff865eed3159b0f7776e3dd0782e0380bfe2c40362d0c08ccc8f29a2f38a8427deb263554495b73cc4df641e569b9d33700fcc6ed1395396
 SHA512 
23d606e32ab2bdc306a4b9d17120e5eda8c8a4fd96d840181afecd6e35f6649621740608f0286d2a5462822acc7ef4e1e7f1e9076882ce975f1da717b136c8c4
+DIST imageio-2.22.4.gh.tar.gz 395090 BLAKE2B 
8980516e26c3a8d128937046582b796264616922f10c5a347ec9b718c773666fe431b2426abbf1de2c99a27cfdc1d7747727c23b2dd665ae88e405746966896e
 SHA512 
38339e7da4ae238cf91aae4ec500899edf7547e80029941550ea73c6b0ba926eac21f4a234833ce52078426c660409558935b72775f3131a390f913fefdb0df1
 DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
 DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/imageio-2.22.4.ebuild 
b/dev-python/imageio/imageio-2.22.4.ebuild
new file mode 100644
index ..bd86d3699c16
--- /dev/null
+++ b/dev-python/imageio/imageio-2.22.4.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   distutils-r1_src_prepare
+}
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+   # blocked by our patch
+   tests/test_core.py::test_fetching
+   tests/test_core.py::test_request
+   # known broken
+   # https://github.com/imageio/imageio/issues/890
+   tests/test_freeimage.py::test_exr_write
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-10-27 Thread Andrew Ammerlaan
commit: 807bf9082d67dfd62e1f210ec5715b684f63c1c0
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Oct 27 14:53:49 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Oct 27 15:54:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=807bf908

dev-python/imageio: enable py3.11

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/imageio/imageio-2.22.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/imageio/imageio-2.22.0-r1.ebuild 
b/dev-python/imageio/imageio-2.22.0-r1.ebuild
index 20bd98f88e7f..3b03357eb4e7 100644
--- a/dev-python/imageio/imageio-2.22.0-r1.ebuild
+++ b/dev-python/imageio/imageio-2.22.0-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/files/, dev-python/imageio/

2022-10-04 Thread Michał Górny
commit: 40b85d13e7fd770f834fde7b160219829fad5311
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Oct  4 08:18:48 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct  4 08:29:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40b85d13

dev-python/imageio: Block fetching remote shared libraries (!)

Bug: https://bugs.gentoo.org/874849
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest|  2 ++
 .../files/imageio-2.22.0-block-download.patch  | 32 ++
 ...geio-2.22.0.ebuild => imageio-2.22.0-r1.ebuild} | 29 
 3 files changed, 63 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index d6e0baaa1216..ae59f0904f03 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,3 @@
 DIST imageio-2.22.0.gh.tar.gz 394144 BLAKE2B 
957edbeaad6be459ff865eed3159b0f7776e3dd0782e0380bfe2c40362d0c08ccc8f29a2f38a8427deb263554495b73cc4df641e569b9d33700fcc6ed1395396
 SHA512 
23d606e32ab2bdc306a4b9d17120e5eda8c8a4fd96d840181afecd6e35f6649621740608f0286d2a5462822acc7ef4e1e7f1e9076882ce975f1da717b136c8c4
+DIST imageio-chelsea.png 221294 BLAKE2B 
58537d7a1678fa5be4cc899e5bacd925bfc180eb4ae691330a53749a49ff544e979609b529ed27e5c1fc9efe4bc050ca1ce49b777f4016fb1d66affd926ef9d3
 SHA512 
48470cdb843eed4dfa6673811c09c5aac9869ee23dd36be0c6b653d9f108d61d21b148c2a4435aaa6604887ba030e5bbc5e35d378da876366445dfc2d0ba4e27
+DIST imageio-cockatoo.mp4 728751 BLAKE2B 
45b22cd517c1cb7c0cd12f8865facaca6a847047aea716e49633cf2b1dc13826f94787c8a8f9dd5f48c6a896f5d37794c0058da1bde9e1469f196916476dbfa2
 SHA512 
e9cb7c25de8019c59ba4090cf10ab29f2b5d62ada37a877081ca07d2ecfe010036222ae843b41bbcc843130d97fa5e14421de252639e9481df1d1c27b19add49

diff --git a/dev-python/imageio/files/imageio-2.22.0-block-download.patch 
b/dev-python/imageio/files/imageio-2.22.0-block-download.patch
new file mode 100644
index ..ba483813b23c
--- /dev/null
+++ b/dev-python/imageio/files/imageio-2.22.0-block-download.patch
@@ -0,0 +1,32 @@
+From 1ae48cfa95e84cb064edc74a4a64bd0f7dee780a Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Tue, 4 Oct 2022 09:40:42 +0200
+Subject: [PATCH] Unconditionally disable downloading binaries from Internet
+
+Bug: https://bugs.gentoo.org/874849
+---
+ imageio/core/fetching.py | 7 +++
+ 1 file changed, 3 insertions(+), 4 deletions(-)
+
+diff --git a/imageio/core/fetching.py b/imageio/core/fetching.py
+index 0380bc7..70f1a3d 100644
+--- a/imageio/core/fetching.py
 b/imageio/core/fetching.py
+@@ -97,11 +97,10 @@ def get_remote_file(fname, directory=None, 
force_download=False, auto=True):
+ break
+ 
+ # If we get here, we're going to try to download the file
+-if os.getenv("IMAGEIO_NO_INTERNET", "").lower() in ("1", "true", "yes"):
++if True:
+ raise InternetNotAllowedError(
+-"Will not download resource from the "
+-"internet because environment variable "
+-"IMAGEIO_NO_INTERNET is set."
++"Implicit insecure downloads disabled on Gentoo due to security "
++"concerns.  See https://bugs.gentoo.org/874849.;
+ )
+ 
+ # Can we proceed with auto-download?
+-- 
+2.38.0
+

diff --git a/dev-python/imageio/imageio-2.22.0.ebuild 
b/dev-python/imageio/imageio-2.22.0-r1.ebuild
similarity index 59%
rename from dev-python/imageio/imageio-2.22.0.ebuild
rename to dev-python/imageio/imageio-2.22.0-r1.ebuild
index 6770d9759db9..20bd98f88e7f 100644
--- a/dev-python/imageio/imageio-2.22.0.ebuild
+++ b/dev-python/imageio/imageio-2.22.0-r1.ebuild
@@ -8,6 +8,7 @@ PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 
+BIN_COMMIT=224074bca448815e421a59266864c23041531a42
 DESCRIPTION="Python library for reading and writing image data"
 HOMEPAGE="
https://imageio.readthedocs.io/en/stable/
@@ -17,6 +18,12 @@ HOMEPAGE="
 SRC_URI="
https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
+   test? (
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/chelsea.png
+   -> ${PN}-chelsea.png
+   
https://github.com/imageio/imageio-binaries/raw/${BIN_COMMIT}/images/cockatoo.mp4
+   -> ${PN}-cockatoo.mp4
+   )
 "
 
 LICENSE="MIT"
@@ -44,9 +51,31 @@ BDEPEND="
 
 distutils_enable_tests pytest
 
+src_prepare() {
+   local PATCHES=(
+   # block silently downloading vulnerable libraries from the 
Internet
+   "${FILESDIR}"/imageio-2.22.0-block-download.patch
+   )
+
+   if use test; then
+   mkdir -p "${HOME}"/.imageio/images || die
+   local i
+   for i in chelsea.png cockatoo.mp4; do
+   cp "${DISTDIR}/${PN}-${i}" 
"${HOME}/.imageio/images/${i}" || die
+   done
+   fi
+
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-10-04 Thread Michał Górny
commit: dd1ad44e3778f4c1235fb243aee44dc7cf3d414d
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Oct  4 07:42:27 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct  4 08:29:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd1ad44e

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  3 --
 dev-python/imageio/imageio-2.21.0.ebuild | 52 
 dev-python/imageio/imageio-2.21.1.ebuild | 52 
 dev-python/imageio/imageio-2.21.2.ebuild | 52 
 4 files changed, 159 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 3251bc1377d8..d6e0baaa1216 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1 @@
-DIST imageio-2.21.0.gh.tar.gz 391056 BLAKE2B 
90fbacf7b396ab2b422d8694274ddc3642c92cfd325bce2861100f5bd28d82120cef6819b53b8ed82ba474d5e287765b63da9a7edfbfab5a026790a39d4edc1e
 SHA512 
5bb070da560ba3a2e10bdb288ad539274ee14f8cf0543847859f0bae052b3d1782777d823435b74120bcfdff0b6cb15a6c80b2a9bf729439bbb3802f15cf5684
-DIST imageio-2.21.1.gh.tar.gz 391159 BLAKE2B 
4c569ec81255d1f5985d2d30f303a978f9cb22e0d7368845648ddab9e5734adba52173d42ad73c94c424ce1a5806c3a10ae31381b04949f7f8c30fd327b585b4
 SHA512 
61fd4a1a64fb152fa5c419cac9a69ea979ac762fbaed81076ddd13602db98f71f31825615111958f21b021213d55be060197417159022bba84d631618f5bb286
-DIST imageio-2.21.2.gh.tar.gz 392425 BLAKE2B 
959c89627188aca0072f519f0f9c3a9fcf2da96883f95760375bea503efd96ff6a198ad7e8bc12dfffe6aecf42f4b07176c8d273c6d349b5e2581053ddefecb6
 SHA512 
69922f05457f050083e92dbce34992911d5fb04f283d6784a8e1fd7f10e7887ffeef343d8f4162efaa55690f363ed6ceb5d2cdc5ee712ae9b276f072fdc45d37
 DIST imageio-2.22.0.gh.tar.gz 394144 BLAKE2B 
957edbeaad6be459ff865eed3159b0f7776e3dd0782e0380bfe2c40362d0c08ccc8f29a2f38a8427deb263554495b73cc4df641e569b9d33700fcc6ed1395396
 SHA512 
23d606e32ab2bdc306a4b9d17120e5eda8c8a4fd96d840181afecd6e35f6649621740608f0286d2a5462822acc7ef4e1e7f1e9076882ce975f1da717b136c8c4

diff --git a/dev-python/imageio/imageio-2.21.0.ebuild 
b/dev-python/imageio/imageio-2.21.0.ebuild
deleted file mode 100644
index 6770d9759db9..
--- a/dev-python/imageio/imageio-2.21.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Tries to download ffmpeg binary ?!
-   tests/test_ffmpeg.py::test_get_exe_installed
-)

diff --git a/dev-python/imageio/imageio-2.21.1.ebuild 
b/dev-python/imageio/imageio-2.21.1.ebuild
deleted file mode 100644
index 6770d9759db9..
--- a/dev-python/imageio/imageio-2.21.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-09-19 Thread Arthur Zamarin
commit: 743bbf5a7246a156b6acc4b733ff5668828ac8ea
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 19 17:59:42 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 19 18:28:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=743bbf5a

dev-python/imageio: add 2.22.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.22.0.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index b45f2775e7b1..3251bc1377d8 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.21.0.gh.tar.gz 391056 BLAKE2B 
90fbacf7b396ab2b422d8694274ddc3642c92cfd325bce2861100f5bd28d82120cef6819b53b8ed82ba474d5e287765b63da9a7edfbfab5a026790a39d4edc1e
 SHA512 
5bb070da560ba3a2e10bdb288ad539274ee14f8cf0543847859f0bae052b3d1782777d823435b74120bcfdff0b6cb15a6c80b2a9bf729439bbb3802f15cf5684
 DIST imageio-2.21.1.gh.tar.gz 391159 BLAKE2B 
4c569ec81255d1f5985d2d30f303a978f9cb22e0d7368845648ddab9e5734adba52173d42ad73c94c424ce1a5806c3a10ae31381b04949f7f8c30fd327b585b4
 SHA512 
61fd4a1a64fb152fa5c419cac9a69ea979ac762fbaed81076ddd13602db98f71f31825615111958f21b021213d55be060197417159022bba84d631618f5bb286
 DIST imageio-2.21.2.gh.tar.gz 392425 BLAKE2B 
959c89627188aca0072f519f0f9c3a9fcf2da96883f95760375bea503efd96ff6a198ad7e8bc12dfffe6aecf42f4b07176c8d273c6d349b5e2581053ddefecb6
 SHA512 
69922f05457f050083e92dbce34992911d5fb04f283d6784a8e1fd7f10e7887ffeef343d8f4162efaa55690f363ed6ceb5d2cdc5ee712ae9b276f072fdc45d37
+DIST imageio-2.22.0.gh.tar.gz 394144 BLAKE2B 
957edbeaad6be459ff865eed3159b0f7776e3dd0782e0380bfe2c40362d0c08ccc8f29a2f38a8427deb263554495b73cc4df641e569b9d33700fcc6ed1395396
 SHA512 
23d606e32ab2bdc306a4b9d17120e5eda8c8a4fd96d840181afecd6e35f6649621740608f0286d2a5462822acc7ef4e1e7f1e9076882ce975f1da717b136c8c4

diff --git a/dev-python/imageio/imageio-2.22.0.ebuild 
b/dev-python/imageio/imageio-2.22.0.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.22.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-08-29 Thread Arthur Zamarin
commit: 10b8f264a2137ed23a8d222aa0f77bf04f1f9fa9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Aug 29 17:56:35 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Aug 29 17:56:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10b8f264

dev-python/imageio: drop 2.19.3, 2.19.5, 2.20.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/Manifest  |  3 --
 dev-python/imageio/imageio-2.19.3.ebuild | 52 
 dev-python/imageio/imageio-2.19.5.ebuild | 52 
 dev-python/imageio/imageio-2.20.0.ebuild | 52 
 4 files changed, 159 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 0545ff47c600..b45f2775e7b1 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,6 +1,3 @@
-DIST imageio-2.19.3.gh.tar.gz 388949 BLAKE2B 
bf7f7b2cc036d6bc808cedeefe624dfe43b232518f78974fffe9c664f23c8e89da73e5b777ee6049aa0ec363400fe8d9df1388a91a4b0a01089609d7ce12eaf3
 SHA512 
5ad9f332ea723facd5d9295e463b12d2cc17dfef8a7349ce194a8d32fcc5d07a29550834c66dc6e5837f8440347387b46624243fa267750f986042910ff6cb90
-DIST imageio-2.19.5.gh.tar.gz 389832 BLAKE2B 
a4455f97d2607d215ba4797e076487f4648ae6b21bf7b5207df8f337b52319ba4dd415d6e351289b588a049c800e8c541fcdaefe064cb4c83de12e63c492cf83
 SHA512 
481f14116961927946a71a7448ecf38f9781172969ab4e35c05360d758f7273be22262d4cd774a76b2089be3b7f0af6cf0a67d40814504e7a65db7075428966c
-DIST imageio-2.20.0.gh.tar.gz 390281 BLAKE2B 
745364f98e3835c428e89abbfbeeb657d10cd730cd61283e5859b10a6e48b63a5b9771860fce75aa8dd770ab77671979847b34bbffe17d215fac5ceb8eb2c7d1
 SHA512 
fc1c41559cc15b76bfacbf4866717c200889661787de4baa49d69fab189ff7d00e376afdeeaaf74b5581e1ffc96da2f02566dfa9c0953518b98a4c4b695ddf02
 DIST imageio-2.21.0.gh.tar.gz 391056 BLAKE2B 
90fbacf7b396ab2b422d8694274ddc3642c92cfd325bce2861100f5bd28d82120cef6819b53b8ed82ba474d5e287765b63da9a7edfbfab5a026790a39d4edc1e
 SHA512 
5bb070da560ba3a2e10bdb288ad539274ee14f8cf0543847859f0bae052b3d1782777d823435b74120bcfdff0b6cb15a6c80b2a9bf729439bbb3802f15cf5684
 DIST imageio-2.21.1.gh.tar.gz 391159 BLAKE2B 
4c569ec81255d1f5985d2d30f303a978f9cb22e0d7368845648ddab9e5734adba52173d42ad73c94c424ce1a5806c3a10ae31381b04949f7f8c30fd327b585b4
 SHA512 
61fd4a1a64fb152fa5c419cac9a69ea979ac762fbaed81076ddd13602db98f71f31825615111958f21b021213d55be060197417159022bba84d631618f5bb286
 DIST imageio-2.21.2.gh.tar.gz 392425 BLAKE2B 
959c89627188aca0072f519f0f9c3a9fcf2da96883f95760375bea503efd96ff6a198ad7e8bc12dfffe6aecf42f4b07176c8d273c6d349b5e2581053ddefecb6
 SHA512 
69922f05457f050083e92dbce34992911d5fb04f283d6784a8e1fd7f10e7887ffeef343d8f4162efaa55690f363ed6ceb5d2cdc5ee712ae9b276f072fdc45d37

diff --git a/dev-python/imageio/imageio-2.19.3.ebuild 
b/dev-python/imageio/imageio-2.19.3.ebuild
deleted file mode 100644
index 6770d9759db9..
--- a/dev-python/imageio/imageio-2.19.3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Tries to download ffmpeg binary ?!
-   tests/test_ffmpeg.py::test_get_exe_installed
-)

diff --git a/dev-python/imageio/imageio-2.19.5.ebuild 
b/dev-python/imageio/imageio-2.19.5.ebuild
deleted file mode 100644
index 6770d9759db9..
--- a/dev-python/imageio/imageio-2.19.5.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-08-29 Thread Arthur Zamarin
commit: f4db55a1be0b3305ad0bd4d9b9e9165f063863fe
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Aug 29 17:56:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Aug 29 17:56:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4db55a1

dev-python/imageio: add 2.21.2

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.21.2.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index ac795f62c33e..0545ff47c600 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -3,3 +3,4 @@ DIST imageio-2.19.5.gh.tar.gz 389832 BLAKE2B 
a4455f97d2607d215ba4797e076487f4648
 DIST imageio-2.20.0.gh.tar.gz 390281 BLAKE2B 
745364f98e3835c428e89abbfbeeb657d10cd730cd61283e5859b10a6e48b63a5b9771860fce75aa8dd770ab77671979847b34bbffe17d215fac5ceb8eb2c7d1
 SHA512 
fc1c41559cc15b76bfacbf4866717c200889661787de4baa49d69fab189ff7d00e376afdeeaaf74b5581e1ffc96da2f02566dfa9c0953518b98a4c4b695ddf02
 DIST imageio-2.21.0.gh.tar.gz 391056 BLAKE2B 
90fbacf7b396ab2b422d8694274ddc3642c92cfd325bce2861100f5bd28d82120cef6819b53b8ed82ba474d5e287765b63da9a7edfbfab5a026790a39d4edc1e
 SHA512 
5bb070da560ba3a2e10bdb288ad539274ee14f8cf0543847859f0bae052b3d1782777d823435b74120bcfdff0b6cb15a6c80b2a9bf729439bbb3802f15cf5684
 DIST imageio-2.21.1.gh.tar.gz 391159 BLAKE2B 
4c569ec81255d1f5985d2d30f303a978f9cb22e0d7368845648ddab9e5734adba52173d42ad73c94c424ce1a5806c3a10ae31381b04949f7f8c30fd327b585b4
 SHA512 
61fd4a1a64fb152fa5c419cac9a69ea979ac762fbaed81076ddd13602db98f71f31825615111958f21b021213d55be060197417159022bba84d631618f5bb286
+DIST imageio-2.21.2.gh.tar.gz 392425 BLAKE2B 
959c89627188aca0072f519f0f9c3a9fcf2da96883f95760375bea503efd96ff6a198ad7e8bc12dfffe6aecf42f4b07176c8d273c6d349b5e2581053ddefecb6
 SHA512 
69922f05457f050083e92dbce34992911d5fb04f283d6784a8e1fd7f10e7887ffeef343d8f4162efaa55690f363ed6ceb5d2cdc5ee712ae9b276f072fdc45d37

diff --git a/dev-python/imageio/imageio-2.21.2.ebuild 
b/dev-python/imageio/imageio-2.21.2.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.21.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-08-08 Thread Arthur Zamarin
commit: 355749bac49c9f6fe791db1b186074bcf6589b79
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Aug  8 18:48:17 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Aug  8 19:17:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=355749ba

dev-python/imageio: add 2.21.1

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.21.1.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 1fd70e722c29..ac795f62c33e 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -2,3 +2,4 @@ DIST imageio-2.19.3.gh.tar.gz 388949 BLAKE2B 
bf7f7b2cc036d6bc808cedeefe624dfe43b
 DIST imageio-2.19.5.gh.tar.gz 389832 BLAKE2B 
a4455f97d2607d215ba4797e076487f4648ae6b21bf7b5207df8f337b52319ba4dd415d6e351289b588a049c800e8c541fcdaefe064cb4c83de12e63c492cf83
 SHA512 
481f14116961927946a71a7448ecf38f9781172969ab4e35c05360d758f7273be22262d4cd774a76b2089be3b7f0af6cf0a67d40814504e7a65db7075428966c
 DIST imageio-2.20.0.gh.tar.gz 390281 BLAKE2B 
745364f98e3835c428e89abbfbeeb657d10cd730cd61283e5859b10a6e48b63a5b9771860fce75aa8dd770ab77671979847b34bbffe17d215fac5ceb8eb2c7d1
 SHA512 
fc1c41559cc15b76bfacbf4866717c200889661787de4baa49d69fab189ff7d00e376afdeeaaf74b5581e1ffc96da2f02566dfa9c0953518b98a4c4b695ddf02
 DIST imageio-2.21.0.gh.tar.gz 391056 BLAKE2B 
90fbacf7b396ab2b422d8694274ddc3642c92cfd325bce2861100f5bd28d82120cef6819b53b8ed82ba474d5e287765b63da9a7edfbfab5a026790a39d4edc1e
 SHA512 
5bb070da560ba3a2e10bdb288ad539274ee14f8cf0543847859f0bae052b3d1782777d823435b74120bcfdff0b6cb15a6c80b2a9bf729439bbb3802f15cf5684
+DIST imageio-2.21.1.gh.tar.gz 391159 BLAKE2B 
4c569ec81255d1f5985d2d30f303a978f9cb22e0d7368845648ddab9e5734adba52173d42ad73c94c424ce1a5806c3a10ae31381b04949f7f8c30fd327b585b4
 SHA512 
61fd4a1a64fb152fa5c419cac9a69ea979ac762fbaed81076ddd13602db98f71f31825615111958f21b021213d55be060197417159022bba84d631618f5bb286

diff --git a/dev-python/imageio/imageio-2.21.1.ebuild 
b/dev-python/imageio/imageio-2.21.1.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.21.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-08-01 Thread Michał Górny
commit: 900d9cf10cf0633546e6d33541199b0434d59302
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug  1 10:32:16 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug  1 11:06:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=900d9cf1

dev-python/imageio: Bump to 2.21.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.21.0.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 0a7aef176983..1fd70e722c29 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.19.3.gh.tar.gz 388949 BLAKE2B 
bf7f7b2cc036d6bc808cedeefe624dfe43b232518f78974fffe9c664f23c8e89da73e5b777ee6049aa0ec363400fe8d9df1388a91a4b0a01089609d7ce12eaf3
 SHA512 
5ad9f332ea723facd5d9295e463b12d2cc17dfef8a7349ce194a8d32fcc5d07a29550834c66dc6e5837f8440347387b46624243fa267750f986042910ff6cb90
 DIST imageio-2.19.5.gh.tar.gz 389832 BLAKE2B 
a4455f97d2607d215ba4797e076487f4648ae6b21bf7b5207df8f337b52319ba4dd415d6e351289b588a049c800e8c541fcdaefe064cb4c83de12e63c492cf83
 SHA512 
481f14116961927946a71a7448ecf38f9781172969ab4e35c05360d758f7273be22262d4cd774a76b2089be3b7f0af6cf0a67d40814504e7a65db7075428966c
 DIST imageio-2.20.0.gh.tar.gz 390281 BLAKE2B 
745364f98e3835c428e89abbfbeeb657d10cd730cd61283e5859b10a6e48b63a5b9771860fce75aa8dd770ab77671979847b34bbffe17d215fac5ceb8eb2c7d1
 SHA512 
fc1c41559cc15b76bfacbf4866717c200889661787de4baa49d69fab189ff7d00e376afdeeaaf74b5581e1ffc96da2f02566dfa9c0953518b98a4c4b695ddf02
+DIST imageio-2.21.0.gh.tar.gz 391056 BLAKE2B 
90fbacf7b396ab2b422d8694274ddc3642c92cfd325bce2861100f5bd28d82120cef6819b53b8ed82ba474d5e287765b63da9a7edfbfab5a026790a39d4edc1e
 SHA512 
5bb070da560ba3a2e10bdb288ad539274ee14f8cf0543847859f0bae052b3d1782777d823435b74120bcfdff0b6cb15a6c80b2a9bf729439bbb3802f15cf5684

diff --git a/dev-python/imageio/imageio-2.21.0.ebuild 
b/dev-python/imageio/imageio-2.21.0.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.21.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-07-26 Thread Michał Górny
commit: 0ebedbf2d6501206b3141058d3fc24457c03a026
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul 26 10:54:00 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul 26 14:11:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ebedbf2

dev-python/imageio: Bump to 2.20.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.20.0.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index fa1c92018317..0a7aef176983 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1,3 @@
 DIST imageio-2.19.3.gh.tar.gz 388949 BLAKE2B 
bf7f7b2cc036d6bc808cedeefe624dfe43b232518f78974fffe9c664f23c8e89da73e5b777ee6049aa0ec363400fe8d9df1388a91a4b0a01089609d7ce12eaf3
 SHA512 
5ad9f332ea723facd5d9295e463b12d2cc17dfef8a7349ce194a8d32fcc5d07a29550834c66dc6e5837f8440347387b46624243fa267750f986042910ff6cb90
 DIST imageio-2.19.5.gh.tar.gz 389832 BLAKE2B 
a4455f97d2607d215ba4797e076487f4648ae6b21bf7b5207df8f337b52319ba4dd415d6e351289b588a049c800e8c541fcdaefe064cb4c83de12e63c492cf83
 SHA512 
481f14116961927946a71a7448ecf38f9781172969ab4e35c05360d758f7273be22262d4cd774a76b2089be3b7f0af6cf0a67d40814504e7a65db7075428966c
+DIST imageio-2.20.0.gh.tar.gz 390281 BLAKE2B 
745364f98e3835c428e89abbfbeeb657d10cd730cd61283e5859b10a6e48b63a5b9771860fce75aa8dd770ab77671979847b34bbffe17d215fac5ceb8eb2c7d1
 SHA512 
fc1c41559cc15b76bfacbf4866717c200889661787de4baa49d69fab189ff7d00e376afdeeaaf74b5581e1ffc96da2f02566dfa9c0953518b98a4c4b695ddf02

diff --git a/dev-python/imageio/imageio-2.20.0.ebuild 
b/dev-python/imageio/imageio-2.20.0.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.20.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-07-18 Thread Sam James
commit: 501c378841f57de2d50a97358eccb4344ed4e2f6
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 19 01:48:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 19 01:48:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=501c3788

dev-python/imageio: add 2.19.5

Signed-off-by: Sam James  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.19.5.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 379ec86c8682..fa1c92018317 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
 DIST imageio-2.19.3.gh.tar.gz 388949 BLAKE2B 
bf7f7b2cc036d6bc808cedeefe624dfe43b232518f78974fffe9c664f23c8e89da73e5b777ee6049aa0ec363400fe8d9df1388a91a4b0a01089609d7ce12eaf3
 SHA512 
5ad9f332ea723facd5d9295e463b12d2cc17dfef8a7349ce194a8d32fcc5d07a29550834c66dc6e5837f8440347387b46624243fa267750f986042910ff6cb90
+DIST imageio-2.19.5.gh.tar.gz 389832 BLAKE2B 
a4455f97d2607d215ba4797e076487f4648ae6b21bf7b5207df8f337b52319ba4dd415d6e351289b588a049c800e8c541fcdaefe064cb4c83de12e63c492cf83
 SHA512 
481f14116961927946a71a7448ecf38f9781172969ab4e35c05360d758f7273be22262d4cd774a76b2089be3b7f0af6cf0a67d40814504e7a65db7075428966c

diff --git a/dev-python/imageio/imageio-2.19.5.ebuild 
b/dev-python/imageio/imageio-2.19.5.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.19.5.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-06-16 Thread Michał Górny
commit: 360d2c347acf169e819f1572cc65646cd6130924
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 16 08:05:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun 16 08:05:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360d2c34

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 -
 dev-python/imageio/imageio-2.19.2.ebuild | 52 
 2 files changed, 53 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index b48ca982990e..379ec86c8682 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1 @@
-DIST imageio-2.19.2.gh.tar.gz 388434 BLAKE2B 
4f0ec3f2586cbce7c15ff0551b8b5389d9236333eecda0870880c6dbe93bb2de464e57af7bc20c0f63aec6d53040a5140195d09c4c8a3c50c391a42b7847cf49
 SHA512 
6711a3be92f840d821f6539636072654d000932a6a7688384ae6bc007af5de41c8f90ed9a29e6401fd13219f50082ba5b75a1b383f1ac9242d568f95859de9c4
 DIST imageio-2.19.3.gh.tar.gz 388949 BLAKE2B 
bf7f7b2cc036d6bc808cedeefe624dfe43b232518f78974fffe9c664f23c8e89da73e5b777ee6049aa0ec363400fe8d9df1388a91a4b0a01089609d7ce12eaf3
 SHA512 
5ad9f332ea723facd5d9295e463b12d2cc17dfef8a7349ce194a8d32fcc5d07a29550834c66dc6e5837f8440347387b46624243fa267750f986042910ff6cb90

diff --git a/dev-python/imageio/imageio-2.19.2.ebuild 
b/dev-python/imageio/imageio-2.19.2.ebuild
deleted file mode 100644
index 6770d9759db9..
--- a/dev-python/imageio/imageio-2.19.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Tries to download ffmpeg binary ?!
-   tests/test_ffmpeg.py::test_get_exe_installed
-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2022-06-12 Thread Michał Górny
commit: 5d76ac34ce7fc51205f8cd1387796ad1d7b81c34
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 12 18:10:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 12 18:27:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d76ac34

dev-python/imageio-ffmpeg: Enable py3.11

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild | 14 ++
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild
index 1ec434ff4fe6..f560bc2f9a3c 100644
--- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild
+++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild
@@ -4,11 +4,15 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
+
 inherit distutils-r1
 
 DESCRIPTION="FFMPEG wrapper for Python"
-HOMEPAGE="https://pypi.org/project/imageio-ffmpeg/ 
https://github.com/imageio/imageio-ffmpeg;
+HOMEPAGE="
+   https://github.com/imageio/imageio-ffmpeg/
+   https://pypi.org/project/imageio-ffmpeg/
+"
 SRC_URI="
https://github.com/imageio/imageio-ffmpeg/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
@@ -20,8 +24,10 @@ KEYWORDS="~amd64 ~x86"
 PROPERTIES="test_network"
 RESTRICT="test"
 
-# ffmpeg is used as executable during runtime
-RDEPEND="media-video/ffmpeg:*"
+# ffmpeg is used as an executable during runtime
+RDEPEND="
+   media-video/ffmpeg:*
+"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-05-30 Thread Michał Górny
commit: 3432c18599832be3ef942fa63fe7afae68f4c25b
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 30 05:24:42 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 30 07:20:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3432c185

dev-python/imageio: Bump to 2.19.3

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.19.3.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 50b3f4781f70..b48ca982990e 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
 DIST imageio-2.19.2.gh.tar.gz 388434 BLAKE2B 
4f0ec3f2586cbce7c15ff0551b8b5389d9236333eecda0870880c6dbe93bb2de464e57af7bc20c0f63aec6d53040a5140195d09c4c8a3c50c391a42b7847cf49
 SHA512 
6711a3be92f840d821f6539636072654d000932a6a7688384ae6bc007af5de41c8f90ed9a29e6401fd13219f50082ba5b75a1b383f1ac9242d568f95859de9c4
+DIST imageio-2.19.3.gh.tar.gz 388949 BLAKE2B 
bf7f7b2cc036d6bc808cedeefe624dfe43b232518f78974fffe9c664f23c8e89da73e5b777ee6049aa0ec363400fe8d9df1388a91a4b0a01089609d7ce12eaf3
 SHA512 
5ad9f332ea723facd5d9295e463b12d2cc17dfef8a7349ce194a8d32fcc5d07a29550834c66dc6e5837f8440347387b46624243fa267750f986042910ff6cb90

diff --git a/dev-python/imageio/imageio-2.19.3.ebuild 
b/dev-python/imageio/imageio-2.19.3.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.19.3.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-05-16 Thread Michał Górny
commit: fcbc7e89e75b87e370600e04249e3d149368359b
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 16 13:18:44 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 16 13:18:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcbc7e89

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 -
 dev-python/imageio/imageio-2.19.1.ebuild | 52 
 2 files changed, 53 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 620e3e64fdac..50b3f4781f70 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1 @@
-DIST imageio-2.19.1.gh.tar.gz 388314 BLAKE2B 
447c2a666d6337926964d977fe45ec30d7995f486b59e03e8a0a68491db2fbcbffbb73946d51080fde5d2627d70fde1f6260f98205ff447e54b7349abdc839fd
 SHA512 
01df54a84c7522ff8ffbc0141fb0ee3416f7b0e04d131473e02c8e18adac384d8f6f2e3f3148229c1d16509465b4a4597e38707bfc8991c6288f4ea1758b4101
 DIST imageio-2.19.2.gh.tar.gz 388434 BLAKE2B 
4f0ec3f2586cbce7c15ff0551b8b5389d9236333eecda0870880c6dbe93bb2de464e57af7bc20c0f63aec6d53040a5140195d09c4c8a3c50c391a42b7847cf49
 SHA512 
6711a3be92f840d821f6539636072654d000932a6a7688384ae6bc007af5de41c8f90ed9a29e6401fd13219f50082ba5b75a1b383f1ac9242d568f95859de9c4

diff --git a/dev-python/imageio/imageio-2.19.1.ebuild 
b/dev-python/imageio/imageio-2.19.1.ebuild
deleted file mode 100644
index 6770d9759db9..
--- a/dev-python/imageio/imageio-2.19.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Tries to download ffmpeg binary ?!
-   tests/test_ffmpeg.py::test_get_exe_installed
-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2022-05-16 Thread Michał Górny
commit: 4226aebee400872ac29501226795f102ae55e39b
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 16 13:18:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 16 13:18:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4226aebe

dev-python/imageio-ffmpeg: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio-ffmpeg/Manifest |  1 -
 .../imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild | 31 --
 2 files changed, 32 deletions(-)

diff --git a/dev-python/imageio-ffmpeg/Manifest 
b/dev-python/imageio-ffmpeg/Manifest
index c7abe349be60..f35240db3079 100644
--- a/dev-python/imageio-ffmpeg/Manifest
+++ b/dev-python/imageio-ffmpeg/Manifest
@@ -1,2 +1 @@
-DIST imageio-ffmpeg-0.4.5.gh.tar.gz 24065 BLAKE2B 
b960a54435628fdefc1ce21c7f3e75c6ce1ffa3b838537173a28173589c3d430d805a7f7eb2b091250cce3b29660edaa1b442e28cbae998728cb89067304e9ac
 SHA512 
c4180903f7194cac880c3851b08e4563c6e12cb6336e321ca35a7baf92ec1de5a49880fd05db9c7c266327642d75830cac4060371cbdc76448fb0a2c21ab0c1c
 DIST imageio-ffmpeg-0.4.7.gh.tar.gz 26301 BLAKE2B 
b794c4c69e43304e089cbab61ff70f3d7d305a515163d0cd0ee4fca678fbec029f01dda1559d6e10e287e56937d6c8f9b52c816df99977034867997c1e392c06
 SHA512 
4e97bd1258aaa43304a3240460f34a0a4b98340c1dc57f673644af36724935f9f2905378b38626b766e7f609fcbda48d2c58402dc3ef9c48c596936a4bd2cc06

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild
deleted file mode 100644
index b94a693e1559..
--- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="FFMPEG wrapper for Python"
-HOMEPAGE="https://pypi.org/project/imageio-ffmpeg/ 
https://github.com/imageio/imageio-ffmpeg;
-SRC_URI="
-   https://github.com/imageio/imageio-ffmpeg/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64"
-PROPERTIES="test_network"
-RESTRICT="test"
-
-# ffmpeg is used as executable during runtime
-RDEPEND="media-video/ffmpeg:*"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -e '/setup_requires/d' -i setup.py || die
-
-   distutils-r1_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-05-16 Thread Michał Górny
commit: 111bd03197372e8166e78b450e13a4e7b3ea21ff
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 16 06:47:15 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 16 07:55:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111bd031

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  2 --
 dev-python/imageio/imageio-2.18.0.ebuild | 52 
 dev-python/imageio/imageio-2.19.0.ebuild | 52 
 3 files changed, 106 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 0ec2f518522e..65885c7f88cb 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1 @@
-DIST imageio-2.18.0.gh.tar.gz 384312 BLAKE2B 
5683ec01db358d9074c5e02c0006bf89e5978418d86b13ce93b1c0fb0800fb650b76d53bd4fdea94c69c185af3341e1e2e80c91815d0f74ebadcaa01ee497e5a
 SHA512 
ddd7606f4b72e3a768b2f7f71d058d11df2bd6e48455240d17b2d93394808158c4f52289ea6f47b5c5655ec45e514aa4413248de0aff1806d28922723540aa50
-DIST imageio-2.19.0.gh.tar.gz 387467 BLAKE2B 
bd37ed1d8c147159a6e3dc951c512ddd1bdcc5c664ea1cae80d7eed4544b9329e92f711452442a459e776ec151db751d1d1c62a7d9e1165c18dcc5f0d05ec9c2
 SHA512 
effa3865259a1dab901a1ef2acf2cdbd57db96308b9edd8d489ff7421e51da0b2b8b8b93a7e3003bac43dd010c4f30aa683fd22236ea5d82af9d8d48b7b60db7
 DIST imageio-2.19.1.gh.tar.gz 388314 BLAKE2B 
447c2a666d6337926964d977fe45ec30d7995f486b59e03e8a0a68491db2fbcbffbb73946d51080fde5d2627d70fde1f6260f98205ff447e54b7349abdc839fd
 SHA512 
01df54a84c7522ff8ffbc0141fb0ee3416f7b0e04d131473e02c8e18adac384d8f6f2e3f3148229c1d16509465b4a4597e38707bfc8991c6288f4ea1758b4101

diff --git a/dev-python/imageio/imageio-2.18.0.ebuild 
b/dev-python/imageio/imageio-2.18.0.ebuild
deleted file mode 100644
index 6770d9759db9..
--- a/dev-python/imageio/imageio-2.18.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Tries to download ffmpeg binary ?!
-   tests/test_ffmpeg.py::test_get_exe_installed
-)

diff --git a/dev-python/imageio/imageio-2.19.0.ebuild 
b/dev-python/imageio/imageio-2.19.0.ebuild
deleted file mode 100644
index 6770d9759db9..
--- a/dev-python/imageio/imageio-2.19.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="
-   https://imageio.readthedocs.io/en/stable/
-   https://github.com/imageio/imageio/
-   https://pypi.org/project/imageio/
-"
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Tries to download ffmpeg binary ?!
- 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-05-16 Thread Michał Górny
commit: 425157275962cf8bdd456a07d3efe94e66ae4b93
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 16 06:47:36 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 16 07:55:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42515727

dev-python/imageio: Bump to 2.19.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.19.2.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 65885c7f88cb..620e3e64fdac 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
 DIST imageio-2.19.1.gh.tar.gz 388314 BLAKE2B 
447c2a666d6337926964d977fe45ec30d7995f486b59e03e8a0a68491db2fbcbffbb73946d51080fde5d2627d70fde1f6260f98205ff447e54b7349abdc839fd
 SHA512 
01df54a84c7522ff8ffbc0141fb0ee3416f7b0e04d131473e02c8e18adac384d8f6f2e3f3148229c1d16509465b4a4597e38707bfc8991c6288f4ea1758b4101
+DIST imageio-2.19.2.gh.tar.gz 388434 BLAKE2B 
4f0ec3f2586cbce7c15ff0551b8b5389d9236333eecda0870880c6dbe93bb2de464e57af7bc20c0f63aec6d53040a5140195d09c4c8a3c50c391a42b7847cf49
 SHA512 
6711a3be92f840d821f6539636072654d000932a6a7688384ae6bc007af5de41c8f90ed9a29e6401fd13219f50082ba5b75a1b383f1ac9242d568f95859de9c4

diff --git a/dev-python/imageio/imageio-2.19.2.ebuild 
b/dev-python/imageio/imageio-2.19.2.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.19.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-05-09 Thread Michał Górny
commit: d71e8d0c2d1fc04925bd2465f41c90d680530cc2
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May  9 08:07:53 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May  9 08:56:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d71e8d0c

dev-python/imageio: Bump to 2.19.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.19.1.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 45d6ed742db2..0ec2f518522e 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1,3 @@
 DIST imageio-2.18.0.gh.tar.gz 384312 BLAKE2B 
5683ec01db358d9074c5e02c0006bf89e5978418d86b13ce93b1c0fb0800fb650b76d53bd4fdea94c69c185af3341e1e2e80c91815d0f74ebadcaa01ee497e5a
 SHA512 
ddd7606f4b72e3a768b2f7f71d058d11df2bd6e48455240d17b2d93394808158c4f52289ea6f47b5c5655ec45e514aa4413248de0aff1806d28922723540aa50
 DIST imageio-2.19.0.gh.tar.gz 387467 BLAKE2B 
bd37ed1d8c147159a6e3dc951c512ddd1bdcc5c664ea1cae80d7eed4544b9329e92f711452442a459e776ec151db751d1d1c62a7d9e1165c18dcc5f0d05ec9c2
 SHA512 
effa3865259a1dab901a1ef2acf2cdbd57db96308b9edd8d489ff7421e51da0b2b8b8b93a7e3003bac43dd010c4f30aa683fd22236ea5d82af9d8d48b7b60db7
+DIST imageio-2.19.1.gh.tar.gz 388314 BLAKE2B 
447c2a666d6337926964d977fe45ec30d7995f486b59e03e8a0a68491db2fbcbffbb73946d51080fde5d2627d70fde1f6260f98205ff447e54b7349abdc839fd
 SHA512 
01df54a84c7522ff8ffbc0141fb0ee3416f7b0e04d131473e02c8e18adac384d8f6f2e3f3148229c1d16509465b4a4597e38707bfc8991c6288f4ea1758b4101

diff --git a/dev-python/imageio/imageio-2.19.1.ebuild 
b/dev-python/imageio/imageio-2.19.1.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.19.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-05-02 Thread Michał Górny
commit: 9c55c9688ae22522658580274611b77e083f3006
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May  2 07:51:06 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May  2 08:26:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c55c968

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  2 --
 dev-python/imageio/imageio-2.16.2.ebuild | 51 
 dev-python/imageio/imageio-2.17.0.ebuild | 46 
 3 files changed, 99 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 48996934ff1a..56bf377db341 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1 @@
-DIST imageio-2.16.2.gh.tar.gz 366758 BLAKE2B 
cf2f9f2649f3d5a44d5d8efee19406b38cbb8de6fbd079170fd8eb43f893151f68b256e5d3d1fbb766c7f0562783ca2237e6171785927c8ed69a14840f1acb02
 SHA512 
1a6e0c9ed58d91fc89810d36acc8f5355ec5f0cf8a7dcc099f3a71cd77bc9d5fcf2821a7bd5f67723be46395290c99e4f478949aa11134f11ff2068504c83c04
-DIST imageio-2.17.0.gh.tar.gz 383819 BLAKE2B 
3676fb6c4de9d4a1dea8e240d14702dec760970f4e5655e54acf68530f1833e24f22b938175795d359eac99c63c32e1a99c45501b54729ec4efcc308cdb2e745
 SHA512 
f6cb4697ceddd43338ef994fc242a921f0c8054655ce63878cc25c8afd28317fadf9806b84f6f337bcc30a61306b451ca29582ddcc1f66e40b6f298620287e11
 DIST imageio-2.18.0.gh.tar.gz 384312 BLAKE2B 
5683ec01db358d9074c5e02c0006bf89e5978418d86b13ce93b1c0fb0800fb650b76d53bd4fdea94c69c185af3341e1e2e80c91815d0f74ebadcaa01ee497e5a
 SHA512 
ddd7606f4b72e3a768b2f7f71d058d11df2bd6e48455240d17b2d93394808158c4f52289ea6f47b5c5655ec45e514aa4413248de0aff1806d28922723540aa50

diff --git a/dev-python/imageio/imageio-2.16.2.ebuild 
b/dev-python/imageio/imageio-2.16.2.ebuild
deleted file mode 100644
index 4a1ac91da053..
--- a/dev-python/imageio/imageio-2.16.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-)
-
-EPYTEST_IGNORE=(
-   # Needs unpackaged imageio_ffmpeg
-   tests/test_ffmpeg.py
-   tests/test_ffmpeg_info.py
-)

diff --git a/dev-python/imageio/imageio-2.17.0.ebuild 
b/dev-python/imageio/imageio-2.17.0.ebuild
deleted file mode 100644
index f85e433292a0..
--- a/dev-python/imageio/imageio-2.17.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-05-02 Thread Michał Górny
commit: 9c108e450a3e4f2a674c7836bd4b466b6948f52a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May  2 07:51:41 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May  2 08:26:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c108e45

dev-python/imageio: Bump to 2.19.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.19.0.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 56bf377db341..45d6ed742db2 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
 DIST imageio-2.18.0.gh.tar.gz 384312 BLAKE2B 
5683ec01db358d9074c5e02c0006bf89e5978418d86b13ce93b1c0fb0800fb650b76d53bd4fdea94c69c185af3341e1e2e80c91815d0f74ebadcaa01ee497e5a
 SHA512 
ddd7606f4b72e3a768b2f7f71d058d11df2bd6e48455240d17b2d93394808158c4f52289ea6f47b5c5655ec45e514aa4413248de0aff1806d28922723540aa50
+DIST imageio-2.19.0.gh.tar.gz 387467 BLAKE2B 
bd37ed1d8c147159a6e3dc951c512ddd1bdcc5c664ea1cae80d7eed4544b9329e92f711452442a459e776ec151db751d1d1c62a7d9e1165c18dcc5f0d05ec9c2
 SHA512 
effa3865259a1dab901a1ef2acf2cdbd57db96308b9edd8d489ff7421e51da0b2b8b8b93a7e3003bac43dd010c4f30aa683fd22236ea5d82af9d8d48b7b60db7

diff --git a/dev-python/imageio/imageio-2.19.0.ebuild 
b/dev-python/imageio/imageio-2.19.0.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.19.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-04-25 Thread Michał Górny
commit: 7eb6abdaaf226aab827806b16c82d39f62a0344f
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr 25 07:54:53 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr 25 08:18:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eb6abda

dev-python/imageio: Bump to 2.18.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.18.0.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index b70952104436..48996934ff1a 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1,3 @@
 DIST imageio-2.16.2.gh.tar.gz 366758 BLAKE2B 
cf2f9f2649f3d5a44d5d8efee19406b38cbb8de6fbd079170fd8eb43f893151f68b256e5d3d1fbb766c7f0562783ca2237e6171785927c8ed69a14840f1acb02
 SHA512 
1a6e0c9ed58d91fc89810d36acc8f5355ec5f0cf8a7dcc099f3a71cd77bc9d5fcf2821a7bd5f67723be46395290c99e4f478949aa11134f11ff2068504c83c04
 DIST imageio-2.17.0.gh.tar.gz 383819 BLAKE2B 
3676fb6c4de9d4a1dea8e240d14702dec760970f4e5655e54acf68530f1833e24f22b938175795d359eac99c63c32e1a99c45501b54729ec4efcc308cdb2e745
 SHA512 
f6cb4697ceddd43338ef994fc242a921f0c8054655ce63878cc25c8afd28317fadf9806b84f6f337bcc30a61306b451ca29582ddcc1f66e40b6f298620287e11
+DIST imageio-2.18.0.gh.tar.gz 384312 BLAKE2B 
5683ec01db358d9074c5e02c0006bf89e5978418d86b13ce93b1c0fb0800fb650b76d53bd4fdea94c69c185af3341e1e2e80c91815d0f74ebadcaa01ee497e5a
 SHA512 
ddd7606f4b72e3a768b2f7f71d058d11df2bd6e48455240d17b2d93394808158c4f52289ea6f47b5c5655ec45e514aa4413248de0aff1806d28922723540aa50

diff --git a/dev-python/imageio/imageio-2.18.0.ebuild 
b/dev-python/imageio/imageio-2.18.0.ebuild
new file mode 100644
index ..6770d9759db9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.18.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="
+   https://imageio.readthedocs.io/en/stable/
+   https://github.com/imageio/imageio/
+   https://pypi.org/project/imageio/
+"
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Tries to download ffmpeg binary ?!
+   tests/test_ffmpeg.py::test_get_exe_installed
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2022-04-18 Thread Jakov Smolić
commit: dc79aa403498e983ca0a2bc33d24bbc2338dae57
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr 18 21:01:51 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr 18 21:01:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc79aa40

dev-python/imageio-ffmpeg: Keyword 0.4.7 x86, #839090

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild
index 042a40ebcb67..1ec434ff4fe6 100644
--- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild
+++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 PROPERTIES="test_network"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-04-18 Thread Jakov Smolić
commit: 502711f35aeafe5fa580c96a5a60f436ad5b8fab
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr 18 21:01:52 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr 18 21:01:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=502711f3

dev-python/imageio: Keyword 2.17.0 x86, #839090

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/imageio/imageio-2.17.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/imageio/imageio-2.17.0.ebuild 
b/dev-python/imageio/imageio-2.17.0.ebuild
index d9c5872c4518..f85e433292a0 100644
--- a/dev-python/imageio/imageio-2.17.0.ebuild
+++ b/dev-python/imageio/imageio-2.17.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 # over 50% of tests rely on Internet
 PROPERTIES="test_network"
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-04-18 Thread Michał Górny
commit: 73fa48b31246981063507ee0d318602acad00564
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr 18 07:28:48 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr 18 07:45:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73fa48b3

dev-python/imageio: Bump to 2.17.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.17.0.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index c029d9e5a338..b70952104436 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
 DIST imageio-2.16.2.gh.tar.gz 366758 BLAKE2B 
cf2f9f2649f3d5a44d5d8efee19406b38cbb8de6fbd079170fd8eb43f893151f68b256e5d3d1fbb766c7f0562783ca2237e6171785927c8ed69a14840f1acb02
 SHA512 
1a6e0c9ed58d91fc89810d36acc8f5355ec5f0cf8a7dcc099f3a71cd77bc9d5fcf2821a7bd5f67723be46395290c99e4f478949aa11134f11ff2068504c83c04
+DIST imageio-2.17.0.gh.tar.gz 383819 BLAKE2B 
3676fb6c4de9d4a1dea8e240d14702dec760970f4e5655e54acf68530f1833e24f22b938175795d359eac99c63c32e1a99c45501b54729ec4efcc308cdb2e745
 SHA512 
f6cb4697ceddd43338ef994fc242a921f0c8054655ce63878cc25c8afd28317fadf9806b84f6f337bcc30a61306b451ca29582ddcc1f66e40b6f298620287e11

diff --git a/dev-python/imageio/imageio-2.17.0.ebuild 
b/dev-python/imageio/imageio-2.17.0.ebuild
new file mode 100644
index ..d9c5872c4518
--- /dev/null
+++ b/dev-python/imageio/imageio-2.17.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/imageio-ffmpeg[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-04-18 Thread Michał Górny
commit: ff0ffb220c9a3daa2ba189c2369b5c9ffbc585bc
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr 18 07:27:13 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr 18 07:45:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff0ffb22

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  2 --
 dev-python/imageio/imageio-2.16.0.ebuild | 51 
 dev-python/imageio/imageio-2.16.1.ebuild | 51 
 3 files changed, 104 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 6cd5fe3a9175..c029d9e5a338 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1 @@
-DIST imageio-2.16.0.gh.tar.gz 360333 BLAKE2B 
fbfea25b9a6dfb945bcaced141649bcc3a7c578115fe2be3151d7a90bab6a51fc20e4806085a2afc934b7ec9de95b5df9fedba9af9722242dac44e2f86009e2b
 SHA512 
18f6e3f0b5c09ac546640ef88a0fe6c157e20ecbaa2de5a2199eab6caac3ca9fd294cf66a2eea79b954271c27390816392af62a27d0e2e11817776efec3a0cd3
-DIST imageio-2.16.1.gh.tar.gz 361506 BLAKE2B 
df7df1cdf414fa762a37c509f2452f7ef20b811695b71acd391d6f565161ae4b5d1caa9dc2f9278ddb87ad518087ed2c729b93806cf1f01a7402e7a77af9383f
 SHA512 
8cd5ce184f67be9cd5edbd5bf51f59c271a71e8fe68c22d284ddabe24cdec6bcf5e590c9c95664b0205509c133e9cd959d11605226a1d4d99f14e95c6d7527c3
 DIST imageio-2.16.2.gh.tar.gz 366758 BLAKE2B 
cf2f9f2649f3d5a44d5d8efee19406b38cbb8de6fbd079170fd8eb43f893151f68b256e5d3d1fbb766c7f0562783ca2237e6171785927c8ed69a14840f1acb02
 SHA512 
1a6e0c9ed58d91fc89810d36acc8f5355ec5f0cf8a7dcc099f3a71cd77bc9d5fcf2821a7bd5f67723be46395290c99e4f478949aa11134f11ff2068504c83c04

diff --git a/dev-python/imageio/imageio-2.16.0.ebuild 
b/dev-python/imageio/imageio-2.16.0.ebuild
deleted file mode 100644
index 4a1ac91da053..
--- a/dev-python/imageio/imageio-2.16.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-)
-
-EPYTEST_IGNORE=(
-   # Needs unpackaged imageio_ffmpeg
-   tests/test_ffmpeg.py
-   tests/test_ffmpeg_info.py
-)

diff --git a/dev-python/imageio/imageio-2.16.1.ebuild 
b/dev-python/imageio/imageio-2.16.1.ebuild
deleted file mode 100644
index 4a1ac91da053..
--- a/dev-python/imageio/imageio-2.16.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-# over 50% of tests rely on Internet
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-# requests for fsspec[github]
-BDEPEND="
-   test? (
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-)
-
-EPYTEST_IGNORE=(
-   # Needs unpackaged imageio_ffmpeg
-   tests/test_ffmpeg.py
-   tests/test_ffmpeg_info.py
-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2022-04-15 Thread Arthur Zamarin
commit: 26ca0baa17c650e0aa045ce1f86f001006d9c627
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Apr 15 08:00:36 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Apr 15 08:22:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26ca0baa

dev-python/imageio-ffmpeg: add 0.4.7

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio-ffmpeg/Manifest |  1 +
 .../imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/imageio-ffmpeg/Manifest 
b/dev-python/imageio-ffmpeg/Manifest
index 1068a1592770..c7abe349be60 100644
--- a/dev-python/imageio-ffmpeg/Manifest
+++ b/dev-python/imageio-ffmpeg/Manifest
@@ -1 +1,2 @@
 DIST imageio-ffmpeg-0.4.5.gh.tar.gz 24065 BLAKE2B 
b960a54435628fdefc1ce21c7f3e75c6ce1ffa3b838537173a28173589c3d430d805a7f7eb2b091250cce3b29660edaa1b442e28cbae998728cb89067304e9ac
 SHA512 
c4180903f7194cac880c3851b08e4563c6e12cb6336e321ca35a7baf92ec1de5a49880fd05db9c7c266327642d75830cac4060371cbdc76448fb0a2c21ab0c1c
+DIST imageio-ffmpeg-0.4.7.gh.tar.gz 26301 BLAKE2B 
b794c4c69e43304e089cbab61ff70f3d7d305a515163d0cd0ee4fca678fbec029f01dda1559d6e10e287e56937d6c8f9b52c816df99977034867997c1e392c06
 SHA512 
4e97bd1258aaa43304a3240460f34a0a4b98340c1dc57f673644af36724935f9f2905378b38626b766e7f609fcbda48d2c58402dc3ef9c48c596936a4bd2cc06

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild
new file mode 100644
index ..042a40ebcb67
--- /dev/null
+++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="FFMPEG wrapper for Python"
+HOMEPAGE="https://pypi.org/project/imageio-ffmpeg/ 
https://github.com/imageio/imageio-ffmpeg;
+SRC_URI="
+   https://github.com/imageio/imageio-ffmpeg/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+# ffmpeg is used as executable during runtime
+RDEPEND="media-video/ffmpeg:*"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -e '/setup_requires/d' -i setup.py || die
+
+   distutils-r1_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-04-11 Thread Michał Górny
commit: c8d54c410ced455c1b0611f6bbabe9b6b9637074
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr 11 06:43:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr 11 07:41:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8d54c41

dev-python/imageio: Bump to 2.16.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.16.2.ebuild | 51 
 2 files changed, 52 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index c5d58cdb787e..6cd5fe3a9175 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1,3 @@
 DIST imageio-2.16.0.gh.tar.gz 360333 BLAKE2B 
fbfea25b9a6dfb945bcaced141649bcc3a7c578115fe2be3151d7a90bab6a51fc20e4806085a2afc934b7ec9de95b5df9fedba9af9722242dac44e2f86009e2b
 SHA512 
18f6e3f0b5c09ac546640ef88a0fe6c157e20ecbaa2de5a2199eab6caac3ca9fd294cf66a2eea79b954271c27390816392af62a27d0e2e11817776efec3a0cd3
 DIST imageio-2.16.1.gh.tar.gz 361506 BLAKE2B 
df7df1cdf414fa762a37c509f2452f7ef20b811695b71acd391d6f565161ae4b5d1caa9dc2f9278ddb87ad518087ed2c729b93806cf1f01a7402e7a77af9383f
 SHA512 
8cd5ce184f67be9cd5edbd5bf51f59c271a71e8fe68c22d284ddabe24cdec6bcf5e590c9c95664b0205509c133e9cd959d11605226a1d4d99f14e95c6d7527c3
+DIST imageio-2.16.2.gh.tar.gz 366758 BLAKE2B 
cf2f9f2649f3d5a44d5d8efee19406b38cbb8de6fbd079170fd8eb43f893151f68b256e5d3d1fbb766c7f0562783ca2237e6171785927c8ed69a14840f1acb02
 SHA512 
1a6e0c9ed58d91fc89810d36acc8f5355ec5f0cf8a7dcc099f3a71cd77bc9d5fcf2821a7bd5f67723be46395290c99e4f478949aa11134f11ff2068504c83c04

diff --git a/dev-python/imageio/imageio-2.16.2.ebuild 
b/dev-python/imageio/imageio-2.16.2.ebuild
new file mode 100644
index ..4a1ac91da053
--- /dev/null
+++ b/dev-python/imageio/imageio-2.16.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-02-28 Thread Michał Górny
commit: 5b7e3cfcc170439092ac9349c896a635e714caa4
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 28 07:23:14 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 28 08:28:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b7e3cfc

dev-python/imageio: Bump to 2.16.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.16.1.ebuild | 51 
 2 files changed, 52 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index f13cae32333c..c5d58cdb787e 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
 DIST imageio-2.16.0.gh.tar.gz 360333 BLAKE2B 
fbfea25b9a6dfb945bcaced141649bcc3a7c578115fe2be3151d7a90bab6a51fc20e4806085a2afc934b7ec9de95b5df9fedba9af9722242dac44e2f86009e2b
 SHA512 
18f6e3f0b5c09ac546640ef88a0fe6c157e20ecbaa2de5a2199eab6caac3ca9fd294cf66a2eea79b954271c27390816392af62a27d0e2e11817776efec3a0cd3
+DIST imageio-2.16.1.gh.tar.gz 361506 BLAKE2B 
df7df1cdf414fa762a37c509f2452f7ef20b811695b71acd391d6f565161ae4b5d1caa9dc2f9278ddb87ad518087ed2c729b93806cf1f01a7402e7a77af9383f
 SHA512 
8cd5ce184f67be9cd5edbd5bf51f59c271a71e8fe68c22d284ddabe24cdec6bcf5e590c9c95664b0205509c133e9cd959d11605226a1d4d99f14e95c6d7527c3

diff --git a/dev-python/imageio/imageio-2.16.1.ebuild 
b/dev-python/imageio/imageio-2.16.1.ebuild
new file mode 100644
index ..4a1ac91da053
--- /dev/null
+++ b/dev-python/imageio/imageio-2.16.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-02-28 Thread Michał Górny
commit: 969a263549da350a1a3704a2e2c949abc67dde78
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 28 07:22:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 28 08:28:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=969a2635

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  5 
 dev-python/imageio/imageio-2.13.4.ebuild | 45 
 dev-python/imageio/imageio-2.13.5.ebuild | 45 
 dev-python/imageio/imageio-2.14.0.ebuild | 45 
 dev-python/imageio/imageio-2.14.1.ebuild | 46 -
 dev-python/imageio/imageio-2.15.0.ebuild | 50 
 6 files changed, 236 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 6d328e309db4..f13cae32333c 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,6 +1 @@
-DIST imageio-2.13.4.gh.tar.gz 340913 BLAKE2B 
332d819633a52069265dd0c02163698085b8d0891ee84def78d99f6fb9888752d8f6384c9666dc66d99bc48673648f736eb6f545b67583cae7252caef6f9e499
 SHA512 
0329a1bfb6906d7f759fec8d5a500cae9a8edaa125d3e4cab7f0e87b2e5eef24655520aecab309de823f9bd8357a1461f772801bac437ed3489804e3c4b40855
-DIST imageio-2.13.5.gh.tar.gz 341447 BLAKE2B 
8fd719533325647980355c0a5180a949d1f282ed11fcdb92a0c580f6aa76f799a60f8a3642c72424e557c84c5f1d5a0610cf679d37dcd8d157865c5d19ef94bf
 SHA512 
52b431c3f41ea598d48f1d9c36cd9a5cdaa13365ce5391b832a3ef5dbdb6803435456bd653b509b75ee00452d07b47e43d87ac0c80598bb99f817ee8abe2e74c
-DIST imageio-2.14.0.gh.tar.gz 344226 BLAKE2B 
88848591909ef247b7f13b033f545901f850fbc7218558781f1da6077f447d8afab5d9d290558e22bc1e94056049100e26d3a471faf1398dad2b8756747d6670
 SHA512 
51b005af2eac0988a2c2b2c629be5aff989a9251d60acc01bccbd9109fa7fe3101185dc657d24c8f1ede56cedf39d8815931385c50816f2a5e453fecfc02f967
-DIST imageio-2.14.1.gh.tar.gz 344533 BLAKE2B 
769b1752fe7e61f2d1be563db8603afa9e0dda758cdd979413bc3235ae04f2fa6c788f031555cdd73e06d1e8cb89813a5ca6a2f45c0826cf402534a770f80884
 SHA512 
1e4769f0817f959208c4a2efa0f9b074e305385424c0297936a52bd9835e584f030166dee3de99d078a097b664f6db84f475045ec3e3b6e5b0fea146637b215c
-DIST imageio-2.15.0.gh.tar.gz 352945 BLAKE2B 
d0c24b53b1c57c6feb11d659cc0491a0d622031b2ea8991761326f441f356015ce4fcafec30efb9a30f58627aa16efe7807bb1215c97d9d01db06b58b9c89fae
 SHA512 
4c39c2c5c8bddfa4f1f5c2b95cca3715d4f469284bcf7306ba17fe712aeb4e75d2fa95f1efdc18b39af9a29106d9bbd9b74c648ad3e2c8ca837b601150c4acca
 DIST imageio-2.16.0.gh.tar.gz 360333 BLAKE2B 
fbfea25b9a6dfb945bcaced141649bcc3a7c578115fe2be3151d7a90bab6a51fc20e4806085a2afc934b7ec9de95b5df9fedba9af9722242dac44e2f86009e2b
 SHA512 
18f6e3f0b5c09ac546640ef88a0fe6c157e20ecbaa2de5a2199eab6caac3ca9fd294cf66a2eea79b954271c27390816392af62a27d0e2e11817776efec3a0cd3

diff --git a/dev-python/imageio/imageio-2.13.4.ebuild 
b/dev-python/imageio/imageio-2.13.4.ebuild
deleted file mode 100644
index f7d4d4abf4c9..
--- a/dev-python/imageio/imageio-2.13.4.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-BDEPEND="
-   test? (
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/tifffile[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-)
-
-EPYTEST_IGNORE=(
-   # Needs unpackaged imageio_ffmpeg
-   tests/test_ffmpeg.py
-   tests/test_ffmpeg_info.py
-)

diff --git a/dev-python/imageio/imageio-2.13.5.ebuild 
b/dev-python/imageio/imageio-2.13.5.ebuild
deleted file mode 100644
index f7d4d4abf4c9..
--- a/dev-python/imageio/imageio-2.13.5.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-02-14 Thread Michał Górny
commit: b64a181a9ba00de73ba2183e34f24afd2f3e89e6
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb 14 08:10:32 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb 14 08:32:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b64a181a

dev-python/imageio: Bump to 2.16.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.16.0.ebuild | 51 
 2 files changed, 52 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index adde177c0665..6d328e309db4 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -3,3 +3,4 @@ DIST imageio-2.13.5.gh.tar.gz 341447 BLAKE2B 
8fd719533325647980355c0a5180a949d1f
 DIST imageio-2.14.0.gh.tar.gz 344226 BLAKE2B 
88848591909ef247b7f13b033f545901f850fbc7218558781f1da6077f447d8afab5d9d290558e22bc1e94056049100e26d3a471faf1398dad2b8756747d6670
 SHA512 
51b005af2eac0988a2c2b2c629be5aff989a9251d60acc01bccbd9109fa7fe3101185dc657d24c8f1ede56cedf39d8815931385c50816f2a5e453fecfc02f967
 DIST imageio-2.14.1.gh.tar.gz 344533 BLAKE2B 
769b1752fe7e61f2d1be563db8603afa9e0dda758cdd979413bc3235ae04f2fa6c788f031555cdd73e06d1e8cb89813a5ca6a2f45c0826cf402534a770f80884
 SHA512 
1e4769f0817f959208c4a2efa0f9b074e305385424c0297936a52bd9835e584f030166dee3de99d078a097b664f6db84f475045ec3e3b6e5b0fea146637b215c
 DIST imageio-2.15.0.gh.tar.gz 352945 BLAKE2B 
d0c24b53b1c57c6feb11d659cc0491a0d622031b2ea8991761326f441f356015ce4fcafec30efb9a30f58627aa16efe7807bb1215c97d9d01db06b58b9c89fae
 SHA512 
4c39c2c5c8bddfa4f1f5c2b95cca3715d4f469284bcf7306ba17fe712aeb4e75d2fa95f1efdc18b39af9a29106d9bbd9b74c648ad3e2c8ca837b601150c4acca
+DIST imageio-2.16.0.gh.tar.gz 360333 BLAKE2B 
fbfea25b9a6dfb945bcaced141649bcc3a7c578115fe2be3151d7a90bab6a51fc20e4806085a2afc934b7ec9de95b5df9fedba9af9722242dac44e2f86009e2b
 SHA512 
18f6e3f0b5c09ac546640ef88a0fe6c157e20ecbaa2de5a2199eab6caac3ca9fd294cf66a2eea79b954271c27390816392af62a27d0e2e11817776efec3a0cd3

diff --git a/dev-python/imageio/imageio-2.16.0.ebuild 
b/dev-python/imageio/imageio-2.16.0.ebuild
new file mode 100644
index ..4a1ac91da053
--- /dev/null
+++ b/dev-python/imageio/imageio-2.16.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# over 50% of tests rely on Internet
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/numpy-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/pillow-8.3.2[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-02-07 Thread Michał Górny
commit: a71b96c702417126e98a51c7a3cbd5f9fe38c7d4
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Feb  7 19:45:01 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Feb  7 20:30:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a71b96c7

dev-python/imageio: Bump to 2.15.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.15.0.ebuild | 50 
 2 files changed, 51 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index f123b4e97afb..adde177c0665 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -2,3 +2,4 @@ DIST imageio-2.13.4.gh.tar.gz 340913 BLAKE2B 
332d819633a52069265dd0c02163698085b
 DIST imageio-2.13.5.gh.tar.gz 341447 BLAKE2B 
8fd719533325647980355c0a5180a949d1f282ed11fcdb92a0c580f6aa76f799a60f8a3642c72424e557c84c5f1d5a0610cf679d37dcd8d157865c5d19ef94bf
 SHA512 
52b431c3f41ea598d48f1d9c36cd9a5cdaa13365ce5391b832a3ef5dbdb6803435456bd653b509b75ee00452d07b47e43d87ac0c80598bb99f817ee8abe2e74c
 DIST imageio-2.14.0.gh.tar.gz 344226 BLAKE2B 
88848591909ef247b7f13b033f545901f850fbc7218558781f1da6077f447d8afab5d9d290558e22bc1e94056049100e26d3a471faf1398dad2b8756747d6670
 SHA512 
51b005af2eac0988a2c2b2c629be5aff989a9251d60acc01bccbd9109fa7fe3101185dc657d24c8f1ede56cedf39d8815931385c50816f2a5e453fecfc02f967
 DIST imageio-2.14.1.gh.tar.gz 344533 BLAKE2B 
769b1752fe7e61f2d1be563db8603afa9e0dda758cdd979413bc3235ae04f2fa6c788f031555cdd73e06d1e8cb89813a5ca6a2f45c0826cf402534a770f80884
 SHA512 
1e4769f0817f959208c4a2efa0f9b074e305385424c0297936a52bd9835e584f030166dee3de99d078a097b664f6db84f475045ec3e3b6e5b0fea146637b215c
+DIST imageio-2.15.0.gh.tar.gz 352945 BLAKE2B 
d0c24b53b1c57c6feb11d659cc0491a0d622031b2ea8991761326f441f356015ce4fcafec30efb9a30f58627aa16efe7807bb1215c97d9d01db06b58b9c89fae
 SHA512 
4c39c2c5c8bddfa4f1f5c2b95cca3715d4f469284bcf7306ba17fe712aeb4e75d2fa95f1efdc18b39af9a29106d9bbd9b74c648ad3e2c8ca837b601150c4acca

diff --git a/dev-python/imageio/imageio-2.15.0.ebuild 
b/dev-python/imageio/imageio-2.15.0.ebuild
new file mode 100644
index ..2308ff4bcf66
--- /dev/null
+++ b/dev-python/imageio/imageio-2.15.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+# requests for fsspec[github]
+BDEPEND="
+   test? (
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-01-24 Thread Arthur Zamarin
commit: 07f5f59ee4f003409febf2dc0807c1c75106f8f4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 24 17:56:40 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 24 17:56:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07f5f59e

dev-python/imageio: add 2.14.1

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.14.1.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 216166d5a1ff..f123b4e97afb 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.13.4.gh.tar.gz 340913 BLAKE2B 
332d819633a52069265dd0c02163698085b8d0891ee84def78d99f6fb9888752d8f6384c9666dc66d99bc48673648f736eb6f545b67583cae7252caef6f9e499
 SHA512 
0329a1bfb6906d7f759fec8d5a500cae9a8edaa125d3e4cab7f0e87b2e5eef24655520aecab309de823f9bd8357a1461f772801bac437ed3489804e3c4b40855
 DIST imageio-2.13.5.gh.tar.gz 341447 BLAKE2B 
8fd719533325647980355c0a5180a949d1f282ed11fcdb92a0c580f6aa76f799a60f8a3642c72424e557c84c5f1d5a0610cf679d37dcd8d157865c5d19ef94bf
 SHA512 
52b431c3f41ea598d48f1d9c36cd9a5cdaa13365ce5391b832a3ef5dbdb6803435456bd653b509b75ee00452d07b47e43d87ac0c80598bb99f817ee8abe2e74c
 DIST imageio-2.14.0.gh.tar.gz 344226 BLAKE2B 
88848591909ef247b7f13b033f545901f850fbc7218558781f1da6077f447d8afab5d9d290558e22bc1e94056049100e26d3a471faf1398dad2b8756747d6670
 SHA512 
51b005af2eac0988a2c2b2c629be5aff989a9251d60acc01bccbd9109fa7fe3101185dc657d24c8f1ede56cedf39d8815931385c50816f2a5e453fecfc02f967
+DIST imageio-2.14.1.gh.tar.gz 344533 BLAKE2B 
769b1752fe7e61f2d1be563db8603afa9e0dda758cdd979413bc3235ae04f2fa6c788f031555cdd73e06d1e8cb89813a5ca6a2f45c0826cf402534a770f80884
 SHA512 
1e4769f0817f959208c4a2efa0f9b074e305385424c0297936a52bd9835e584f030166dee3de99d078a097b664f6db84f475045ec3e3b6e5b0fea146637b215c

diff --git a/dev-python/imageio/imageio-2.14.1.ebuild 
b/dev-python/imageio/imageio-2.14.1.ebuild
new file mode 100644
index ..f28ec68a7e76
--- /dev/null
+++ b/dev-python/imageio/imageio-2.14.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2022-01-20 Thread Arthur Zamarin
commit: 0f79bc19878178c39f91a447e8d4656bba977395
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jan 20 19:13:50 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jan 20 19:23:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f79bc19

dev-python/imageio: add 2.14.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.14.0.ebuild | 45 
 2 files changed, 46 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index f8b5662463f3..216166d5a1ff 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1,3 @@
 DIST imageio-2.13.4.gh.tar.gz 340913 BLAKE2B 
332d819633a52069265dd0c02163698085b8d0891ee84def78d99f6fb9888752d8f6384c9666dc66d99bc48673648f736eb6f545b67583cae7252caef6f9e499
 SHA512 
0329a1bfb6906d7f759fec8d5a500cae9a8edaa125d3e4cab7f0e87b2e5eef24655520aecab309de823f9bd8357a1461f772801bac437ed3489804e3c4b40855
 DIST imageio-2.13.5.gh.tar.gz 341447 BLAKE2B 
8fd719533325647980355c0a5180a949d1f282ed11fcdb92a0c580f6aa76f799a60f8a3642c72424e557c84c5f1d5a0610cf679d37dcd8d157865c5d19ef94bf
 SHA512 
52b431c3f41ea598d48f1d9c36cd9a5cdaa13365ce5391b832a3ef5dbdb6803435456bd653b509b75ee00452d07b47e43d87ac0c80598bb99f817ee8abe2e74c
+DIST imageio-2.14.0.gh.tar.gz 344226 BLAKE2B 
88848591909ef247b7f13b033f545901f850fbc7218558781f1da6077f447d8afab5d9d290558e22bc1e94056049100e26d3a471faf1398dad2b8756747d6670
 SHA512 
51b005af2eac0988a2c2b2c629be5aff989a9251d60acc01bccbd9109fa7fe3101185dc657d24c8f1ede56cedf39d8815931385c50816f2a5e453fecfc02f967

diff --git a/dev-python/imageio/imageio-2.14.0.ebuild 
b/dev-python/imageio/imageio-2.14.0.ebuild
new file mode 100644
index ..b25825711c00
--- /dev/null
+++ b/dev-python/imageio/imageio-2.14.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-12-23 Thread Michał Górny
commit: d024a6a475ae7f8cdeeeba1972889d47a16e4d5b
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 23 08:19:54 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 23 09:30:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d024a6a4

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest |  9 --
 dev-python/imageio/imageio-2.10.4.ebuild| 41 -
 dev-python/imageio/imageio-2.10.5.ebuild| 46 -
 dev-python/imageio/imageio-2.11.0.ebuild| 46 -
 dev-python/imageio/imageio-2.11.1.ebuild| 46 -
 dev-python/imageio/imageio-2.12.0.ebuild| 46 -
 dev-python/imageio/imageio-2.13.0.ebuild| 46 -
 dev-python/imageio/imageio-2.13.1.ebuild| 46 -
 dev-python/imageio/imageio-2.13.2.ebuild| 46 -
 dev-python/imageio/imageio-2.13.3-r1.ebuild | 45 
 dev-python/imageio/imageio-2.13.3.ebuild| 46 -
 11 files changed, 463 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 7ae03b75c542..1aeb98ed65ee 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,10 +1 @@
-DIST imageio-2.10.4.gh.tar.gz 335495 BLAKE2B 
66f8662953d7023557d4fc98b9cf2cfa00346a14286b72dd1b3abf618ee6da36da341c4a57116197e0f138424ef01050cc9176c6afcf277796aa61199e5a1530
 SHA512 
562bb0d7c8e627e491910f997947a4ffe967ed6dcf3d281b07145f9c8148ca0f2d9775bc89c9024ebc9bfa54f03a60aadc30a84827c050f18dbb23286ac18b96
-DIST imageio-2.10.5.gh.tar.gz 335546 BLAKE2B 
1bfd418bb59f217c2108be9aedf35d1b6326d29d476ac6648041b38efa44a2220212f170cae90005e027006adfe55178dee699a1e4b37b7e948863c61432afe8
 SHA512 
2a058e8ce7e2ad650bea05573d249c1c06326dd1ed0f47517c3a0095a2e03fa2b90ffa5f8aae535e937b8b9fd8153ccb13267773183e45639205faddab08348a
-DIST imageio-2.11.0.gh.tar.gz 339057 BLAKE2B 
6dd5661866135b472a062b57b424e8ff044510488b1ccd291552f979263f2f03d3feb00ad9ab035249a2966711e804a95ff7e8f174a1f0773445782365744b6c
 SHA512 
b42f05eabcbee4fb4bb66793cca04137b4db2695269c204b2fec43527ab6a1d9e29c688061ee53c28454b64e09343d69cc931867c5aca01d47145bd734348629
-DIST imageio-2.11.1.gh.tar.gz 339241 BLAKE2B 
b197c946fe34e504979c9fe7e69179211bf72d986105175419c304b95628c02d3dae2e5e7b13902493cb6a7538bc3e5976590e25a35165c857623b62635b79b3
 SHA512 
cf33d0c96a08f29ed761e811922a31a97c36aef48022708132d5282bf5c87bb3ef67a80a98e01f57489fd4a261955e4ca231c67dfc69f5865c47a5b1f317d137
-DIST imageio-2.12.0.gh.tar.gz 339829 BLAKE2B 
5f6c38bd139c33e7fc00fad8f32cd2f9888fa61a4930021b58fc33530241cf8d40e13002cfedf21631d1ff18797a9d044288e3ffc8852276912ddd7485206ecd
 SHA512 
05824e8617470734ca4966fa4cb0b3da5ce22bbbf2ff6382d216d768b6dd3923d072a3f157d1ba23524c4b499c320d3a8e051852f656ad5cb0f120a298daf688
-DIST imageio-2.13.0.gh.tar.gz 339891 BLAKE2B 
a9e38a855836dac3ee228376c49e9751e651530b316932a756c86f21f7c987f1f57387db1751ff0cd6673844cbfc8dcfd0bceee520ec6107290712db03ca9d9c
 SHA512 
4f63a1183a631fa192e08438cfe97936f45b9157cad73c8a27ddc378817c21db3d92bab2e7565ef9ef539c771120e158075ae1069aec60d824c40d420dd8e117
-DIST imageio-2.13.1.gh.tar.gz 340484 BLAKE2B 
8b05feabdcf44877365d5fea7916cc36c30f2ab9f40a909e02ccace6f457d5bfedae58a1397dc8d211d5f3738f148a3de355b399f47d80b2f50cc634fcbd18ad
 SHA512 
3c5ca6b96a26fc19801d571af3e0d804b4946bf34d8d3ed52b946bdde595a90ff8c0da7fb2949f6a1d2d6ba5799c2feff6bade04de40cb9a807c7cd30e57eaac
-DIST imageio-2.13.2.gh.tar.gz 340635 BLAKE2B 
463607eda8b3479d3f76174ccc6674bb1f727cb2fcafa5c47ce63241188d6396619a57725032812bb531aa4a36a00d28e4ad95d8a82de658c755405d2068a0f0
 SHA512 
0b08d12463075fcf8a45deef04843bebf5932347fc34aa48effe7d29232fcc482fd0d4fa29bc9a51a81e343e1636823931db5b28290ffa67987b608cc51a8e99
-DIST imageio-2.13.3.gh.tar.gz 340780 BLAKE2B 
ea0ce7fcd941d14d41f5212f053884de4bb5bf9794050a8872a7a10a1dcdeb217706e97c9a7dd74b5bff27796b4431ca27535d6becc3db9595a0447f54fc1454
 SHA512 
709aabb0b89cf1bac65f8671f57523833bf0c5dc1f4e4a379f0c77203ae25b651a5ba9135f45b5dea2affbab6d6e79bb66a75ea05a0c83d5d08027a5bd6aeaef
 DIST imageio-2.13.4.gh.tar.gz 340913 BLAKE2B 
332d819633a52069265dd0c02163698085b8d0891ee84def78d99f6fb9888752d8f6384c9666dc66d99bc48673648f736eb6f545b67583cae7252caef6f9e499
 SHA512 
0329a1bfb6906d7f759fec8d5a500cae9a8edaa125d3e4cab7f0e87b2e5eef24655520aecab309de823f9bd8357a1461f772801bac437ed3489804e3c4b40855

diff --git a/dev-python/imageio/imageio-2.10.4.ebuild 
b/dev-python/imageio/imageio-2.10.4.ebuild
deleted file mode 100644
index 9f303080792f..
--- a/dev-python/imageio/imageio-2.10.4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-12-23 Thread Michał Górny
commit: 5ce2c8f722213539e411d55a88f387ff7c903c47
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 23 08:21:48 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 23 09:30:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ce2c8f7

dev-python/imageio: Bump to 2.13.5

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.13.5.ebuild | 45 
 2 files changed, 46 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 1aeb98ed65ee..f8b5662463f3 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
 DIST imageio-2.13.4.gh.tar.gz 340913 BLAKE2B 
332d819633a52069265dd0c02163698085b8d0891ee84def78d99f6fb9888752d8f6384c9666dc66d99bc48673648f736eb6f545b67583cae7252caef6f9e499
 SHA512 
0329a1bfb6906d7f759fec8d5a500cae9a8edaa125d3e4cab7f0e87b2e5eef24655520aecab309de823f9bd8357a1461f772801bac437ed3489804e3c4b40855
+DIST imageio-2.13.5.gh.tar.gz 341447 BLAKE2B 
8fd719533325647980355c0a5180a949d1f282ed11fcdb92a0c580f6aa76f799a60f8a3642c72424e557c84c5f1d5a0610cf679d37dcd8d157865c5d19ef94bf
 SHA512 
52b431c3f41ea598d48f1d9c36cd9a5cdaa13365ce5391b832a3ef5dbdb6803435456bd653b509b75ee00452d07b47e43d87ac0c80598bb99f817ee8abe2e74c

diff --git a/dev-python/imageio/imageio-2.13.5.ebuild 
b/dev-python/imageio/imageio-2.13.5.ebuild
new file mode 100644
index ..f7d4d4abf4c9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.13.5.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-12-20 Thread Arthur Zamarin
commit: d665193c47eba3e7a27a6731b5b863b1db113daf
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 21 06:12:35 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 21 06:42:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d665193c

dev-python/imageio: add 2.13.4

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.13.4.ebuild | 45 
 2 files changed, 46 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 6f5249c692b3..7ae03b75c542 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -7,3 +7,4 @@ DIST imageio-2.13.0.gh.tar.gz 339891 BLAKE2B 
a9e38a855836dac3ee228376c49e9751e65
 DIST imageio-2.13.1.gh.tar.gz 340484 BLAKE2B 
8b05feabdcf44877365d5fea7916cc36c30f2ab9f40a909e02ccace6f457d5bfedae58a1397dc8d211d5f3738f148a3de355b399f47d80b2f50cc634fcbd18ad
 SHA512 
3c5ca6b96a26fc19801d571af3e0d804b4946bf34d8d3ed52b946bdde595a90ff8c0da7fb2949f6a1d2d6ba5799c2feff6bade04de40cb9a807c7cd30e57eaac
 DIST imageio-2.13.2.gh.tar.gz 340635 BLAKE2B 
463607eda8b3479d3f76174ccc6674bb1f727cb2fcafa5c47ce63241188d6396619a57725032812bb531aa4a36a00d28e4ad95d8a82de658c755405d2068a0f0
 SHA512 
0b08d12463075fcf8a45deef04843bebf5932347fc34aa48effe7d29232fcc482fd0d4fa29bc9a51a81e343e1636823931db5b28290ffa67987b608cc51a8e99
 DIST imageio-2.13.3.gh.tar.gz 340780 BLAKE2B 
ea0ce7fcd941d14d41f5212f053884de4bb5bf9794050a8872a7a10a1dcdeb217706e97c9a7dd74b5bff27796b4431ca27535d6becc3db9595a0447f54fc1454
 SHA512 
709aabb0b89cf1bac65f8671f57523833bf0c5dc1f4e4a379f0c77203ae25b651a5ba9135f45b5dea2affbab6d6e79bb66a75ea05a0c83d5d08027a5bd6aeaef
+DIST imageio-2.13.4.gh.tar.gz 340913 BLAKE2B 
332d819633a52069265dd0c02163698085b8d0891ee84def78d99f6fb9888752d8f6384c9666dc66d99bc48673648f736eb6f545b67583cae7252caef6f9e499
 SHA512 
0329a1bfb6906d7f759fec8d5a500cae9a8edaa125d3e4cab7f0e87b2e5eef24655520aecab309de823f9bd8357a1461f772801bac437ed3489804e3c4b40855

diff --git a/dev-python/imageio/imageio-2.13.4.ebuild 
b/dev-python/imageio/imageio-2.13.4.ebuild
new file mode 100644
index ..f7d4d4abf4c9
--- /dev/null
+++ b/dev-python/imageio/imageio-2.13.4.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-12-12 Thread Jakov Smolić
commit: 6136fd2ee53ff1c401f82b4912ce8c762ebb6ecd
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Dec 12 17:42:19 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Dec 12 17:42:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6136fd2e

dev-python/imageio: Keyword 2.13.3-r1 x86, #828975

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/imageio/imageio-2.13.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/imageio/imageio-2.13.3-r1.ebuild 
b/dev-python/imageio/imageio-2.13.3-r1.ebuild
index 72f7f04b1163..f7d4d4abf4c9 100644
--- a/dev-python/imageio/imageio-2.13.3-r1.ebuild
+++ b/dev-python/imageio/imageio-2.13.3-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 PROPERTIES="test_network"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-12-12 Thread Michał Górny
commit: 90eb807dbcd3a61289c07a55b16419bf02cbae68
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 12 09:27:20 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec 12 09:27:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90eb807d

dev-python/imageio: Add python@ as co-maint

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/imageio/metadata.xml b/dev-python/imageio/metadata.xml
index 00e4692d0a4d..e06b08ec97ba 100644
--- a/dev-python/imageio/metadata.xml
+++ b/dev-python/imageio/metadata.xml
@@ -9,6 +9,10 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   
+   pyt...@gentoo.org
+   Python
+   

Imageio is a Python library that provides an easy interface to 
read
and write a wide range of image data, including animated 
images, 



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-12-12 Thread Michał Górny
commit: 0091de42ba9a944f178f1df8b6b8ba255ccb3d76
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 12 09:16:27 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec 12 09:26:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0091de42

dev-python/imageio: Add tifffile test-dep

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/imageio-2.13.3-r1.ebuild | 45 +
 1 file changed, 45 insertions(+)

diff --git a/dev-python/imageio/imageio-2.13.3-r1.ebuild 
b/dev-python/imageio/imageio-2.13.3-r1.ebuild
new file mode 100644
index ..72f7f04b1163
--- /dev/null
+++ b/dev-python/imageio/imageio-2.13.3-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/tifffile[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/

2021-12-09 Thread Arthur Zamarin
commit: d5c4439534b7229cf5d44cf818fdc99c97f69b15
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Dec  9 18:45:15 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Dec  9 20:43:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5c44395

dev-python/imageio-ffmpeg: initial import, add 0.4.5

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio-ffmpeg/Manifest |  1 +
 .../imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild | 31 ++
 dev-python/imageio-ffmpeg/metadata.xml | 13 +
 3 files changed, 45 insertions(+)

diff --git a/dev-python/imageio-ffmpeg/Manifest 
b/dev-python/imageio-ffmpeg/Manifest
new file mode 100644
index ..1068a1592770
--- /dev/null
+++ b/dev-python/imageio-ffmpeg/Manifest
@@ -0,0 +1 @@
+DIST imageio-ffmpeg-0.4.5.gh.tar.gz 24065 BLAKE2B 
b960a54435628fdefc1ce21c7f3e75c6ce1ffa3b838537173a28173589c3d430d805a7f7eb2b091250cce3b29660edaa1b442e28cbae998728cb89067304e9ac
 SHA512 
c4180903f7194cac880c3851b08e4563c6e12cb6336e321ca35a7baf92ec1de5a49880fd05db9c7c266327642d75830cac4060371cbdc76448fb0a2c21ab0c1c

diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild 
b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild
new file mode 100644
index ..b94a693e1559
--- /dev/null
+++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="FFMPEG wrapper for Python"
+HOMEPAGE="https://pypi.org/project/imageio-ffmpeg/ 
https://github.com/imageio/imageio-ffmpeg;
+SRC_URI="
+   https://github.com/imageio/imageio-ffmpeg/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+# ffmpeg is used as executable during runtime
+RDEPEND="media-video/ffmpeg:*"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -e '/setup_requires/d' -i setup.py || die
+
+   distutils-r1_src_prepare
+}

diff --git a/dev-python/imageio-ffmpeg/metadata.xml 
b/dev-python/imageio-ffmpeg/metadata.xml
new file mode 100644
index ..b3314f33baef
--- /dev/null
+++ b/dev-python/imageio-ffmpeg/metadata.xml
@@ -0,0 +1,13 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   pyt...@gentoo.org
+   Python
+   
+   
+   
+   imageio-ffmpeg
+   imageio/imageio-ffmpeg
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-12-08 Thread Michał Górny
commit: 1c3fc2e33747068d4d451f3e3b337b2a3979a461
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec  8 21:24:12 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec  8 21:58:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c3fc2e3

dev-python/imageio: Bump to 2.13.3

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.13.3.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 8e2f415472c8..6f5249c692b3 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -6,3 +6,4 @@ DIST imageio-2.12.0.gh.tar.gz 339829 BLAKE2B 
5f6c38bd139c33e7fc00fad8f32cd2f9888
 DIST imageio-2.13.0.gh.tar.gz 339891 BLAKE2B 
a9e38a855836dac3ee228376c49e9751e651530b316932a756c86f21f7c987f1f57387db1751ff0cd6673844cbfc8dcfd0bceee520ec6107290712db03ca9d9c
 SHA512 
4f63a1183a631fa192e08438cfe97936f45b9157cad73c8a27ddc378817c21db3d92bab2e7565ef9ef539c771120e158075ae1069aec60d824c40d420dd8e117
 DIST imageio-2.13.1.gh.tar.gz 340484 BLAKE2B 
8b05feabdcf44877365d5fea7916cc36c30f2ab9f40a909e02ccace6f457d5bfedae58a1397dc8d211d5f3738f148a3de355b399f47d80b2f50cc634fcbd18ad
 SHA512 
3c5ca6b96a26fc19801d571af3e0d804b4946bf34d8d3ed52b946bdde595a90ff8c0da7fb2949f6a1d2d6ba5799c2feff6bade04de40cb9a807c7cd30e57eaac
 DIST imageio-2.13.2.gh.tar.gz 340635 BLAKE2B 
463607eda8b3479d3f76174ccc6674bb1f727cb2fcafa5c47ce63241188d6396619a57725032812bb531aa4a36a00d28e4ad95d8a82de658c755405d2068a0f0
 SHA512 
0b08d12463075fcf8a45deef04843bebf5932347fc34aa48effe7d29232fcc482fd0d4fa29bc9a51a81e343e1636823931db5b28290ffa67987b608cc51a8e99
+DIST imageio-2.13.3.gh.tar.gz 340780 BLAKE2B 
ea0ce7fcd941d14d41f5212f053884de4bb5bf9794050a8872a7a10a1dcdeb217706e97c9a7dd74b5bff27796b4431ca27535d6becc3db9595a0447f54fc1454
 SHA512 
709aabb0b89cf1bac65f8671f57523833bf0c5dc1f4e4a379f0c77203ae25b651a5ba9135f45b5dea2affbab6d6e79bb66a75ea05a0c83d5d08027a5bd6aeaef

diff --git a/dev-python/imageio/imageio-2.13.3.ebuild 
b/dev-python/imageio/imageio-2.13.3.ebuild
new file mode 100644
index ..cd5928118230
--- /dev/null
+++ b/dev-python/imageio/imageio-2.13.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+   # Needs tifffile
+   tests/test_tifffile.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-12-07 Thread Michał Górny
commit: dd50990425da74e38539c633424368e2ad166bfb
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec  7 07:56:52 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec  7 09:32:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd509904

dev-python/imageio: Bump to 2.13.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.13.2.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index ca50ec53bf40..8e2f415472c8 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -5,3 +5,4 @@ DIST imageio-2.11.1.gh.tar.gz 339241 BLAKE2B 
b197c946fe34e504979c9fe7e69179211bf
 DIST imageio-2.12.0.gh.tar.gz 339829 BLAKE2B 
5f6c38bd139c33e7fc00fad8f32cd2f9888fa61a4930021b58fc33530241cf8d40e13002cfedf21631d1ff18797a9d044288e3ffc8852276912ddd7485206ecd
 SHA512 
05824e8617470734ca4966fa4cb0b3da5ce22bbbf2ff6382d216d768b6dd3923d072a3f157d1ba23524c4b499c320d3a8e051852f656ad5cb0f120a298daf688
 DIST imageio-2.13.0.gh.tar.gz 339891 BLAKE2B 
a9e38a855836dac3ee228376c49e9751e651530b316932a756c86f21f7c987f1f57387db1751ff0cd6673844cbfc8dcfd0bceee520ec6107290712db03ca9d9c
 SHA512 
4f63a1183a631fa192e08438cfe97936f45b9157cad73c8a27ddc378817c21db3d92bab2e7565ef9ef539c771120e158075ae1069aec60d824c40d420dd8e117
 DIST imageio-2.13.1.gh.tar.gz 340484 BLAKE2B 
8b05feabdcf44877365d5fea7916cc36c30f2ab9f40a909e02ccace6f457d5bfedae58a1397dc8d211d5f3738f148a3de355b399f47d80b2f50cc634fcbd18ad
 SHA512 
3c5ca6b96a26fc19801d571af3e0d804b4946bf34d8d3ed52b946bdde595a90ff8c0da7fb2949f6a1d2d6ba5799c2feff6bade04de40cb9a807c7cd30e57eaac
+DIST imageio-2.13.2.gh.tar.gz 340635 BLAKE2B 
463607eda8b3479d3f76174ccc6674bb1f727cb2fcafa5c47ce63241188d6396619a57725032812bb531aa4a36a00d28e4ad95d8a82de658c755405d2068a0f0
 SHA512 
0b08d12463075fcf8a45deef04843bebf5932347fc34aa48effe7d29232fcc482fd0d4fa29bc9a51a81e343e1636823931db5b28290ffa67987b608cc51a8e99

diff --git a/dev-python/imageio/imageio-2.13.2.ebuild 
b/dev-python/imageio/imageio-2.13.2.ebuild
new file mode 100644
index ..cd5928118230
--- /dev/null
+++ b/dev-python/imageio/imageio-2.13.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+   # Needs tifffile
+   tests/test_tifffile.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-30 Thread Michał Górny
commit: 2553be74dc36da031dc55929c83be83a4c9b7fe1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec  1 07:00:42 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec  1 07:45:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2553be74

dev-python/imageio: Bump to 2.13.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.13.1.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index ee1399221c98..ca50ec53bf40 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -4,3 +4,4 @@ DIST imageio-2.11.0.gh.tar.gz 339057 BLAKE2B 
6dd5661866135b472a062b57b424e8ff044
 DIST imageio-2.11.1.gh.tar.gz 339241 BLAKE2B 
b197c946fe34e504979c9fe7e69179211bf72d986105175419c304b95628c02d3dae2e5e7b13902493cb6a7538bc3e5976590e25a35165c857623b62635b79b3
 SHA512 
cf33d0c96a08f29ed761e811922a31a97c36aef48022708132d5282bf5c87bb3ef67a80a98e01f57489fd4a261955e4ca231c67dfc69f5865c47a5b1f317d137
 DIST imageio-2.12.0.gh.tar.gz 339829 BLAKE2B 
5f6c38bd139c33e7fc00fad8f32cd2f9888fa61a4930021b58fc33530241cf8d40e13002cfedf21631d1ff18797a9d044288e3ffc8852276912ddd7485206ecd
 SHA512 
05824e8617470734ca4966fa4cb0b3da5ce22bbbf2ff6382d216d768b6dd3923d072a3f157d1ba23524c4b499c320d3a8e051852f656ad5cb0f120a298daf688
 DIST imageio-2.13.0.gh.tar.gz 339891 BLAKE2B 
a9e38a855836dac3ee228376c49e9751e651530b316932a756c86f21f7c987f1f57387db1751ff0cd6673844cbfc8dcfd0bceee520ec6107290712db03ca9d9c
 SHA512 
4f63a1183a631fa192e08438cfe97936f45b9157cad73c8a27ddc378817c21db3d92bab2e7565ef9ef539c771120e158075ae1069aec60d824c40d420dd8e117
+DIST imageio-2.13.1.gh.tar.gz 340484 BLAKE2B 
8b05feabdcf44877365d5fea7916cc36c30f2ab9f40a909e02ccace6f457d5bfedae58a1397dc8d211d5f3738f148a3de355b399f47d80b2f50cc634fcbd18ad
 SHA512 
3c5ca6b96a26fc19801d571af3e0d804b4946bf34d8d3ed52b946bdde595a90ff8c0da7fb2949f6a1d2d6ba5799c2feff6bade04de40cb9a807c7cd30e57eaac

diff --git a/dev-python/imageio/imageio-2.13.1.ebuild 
b/dev-python/imageio/imageio-2.13.1.ebuild
new file mode 100644
index ..cd5928118230
--- /dev/null
+++ b/dev-python/imageio/imageio-2.13.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+   # Needs tifffile
+   tests/test_tifffile.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-28 Thread Michał Górny
commit: 601484fb271c5983fb7cf8339e36af2159990ebf
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov 29 03:52:44 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov 29 03:52:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=601484fb

dev-python/imageio: Bump to 2.13.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.13.0.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 214894d8443b..ee1399221c98 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -3,3 +3,4 @@ DIST imageio-2.10.5.gh.tar.gz 335546 BLAKE2B 
1bfd418bb59f217c2108be9aedf35d1b632
 DIST imageio-2.11.0.gh.tar.gz 339057 BLAKE2B 
6dd5661866135b472a062b57b424e8ff044510488b1ccd291552f979263f2f03d3feb00ad9ab035249a2966711e804a95ff7e8f174a1f0773445782365744b6c
 SHA512 
b42f05eabcbee4fb4bb66793cca04137b4db2695269c204b2fec43527ab6a1d9e29c688061ee53c28454b64e09343d69cc931867c5aca01d47145bd734348629
 DIST imageio-2.11.1.gh.tar.gz 339241 BLAKE2B 
b197c946fe34e504979c9fe7e69179211bf72d986105175419c304b95628c02d3dae2e5e7b13902493cb6a7538bc3e5976590e25a35165c857623b62635b79b3
 SHA512 
cf33d0c96a08f29ed761e811922a31a97c36aef48022708132d5282bf5c87bb3ef67a80a98e01f57489fd4a261955e4ca231c67dfc69f5865c47a5b1f317d137
 DIST imageio-2.12.0.gh.tar.gz 339829 BLAKE2B 
5f6c38bd139c33e7fc00fad8f32cd2f9888fa61a4930021b58fc33530241cf8d40e13002cfedf21631d1ff18797a9d044288e3ffc8852276912ddd7485206ecd
 SHA512 
05824e8617470734ca4966fa4cb0b3da5ce22bbbf2ff6382d216d768b6dd3923d072a3f157d1ba23524c4b499c320d3a8e051852f656ad5cb0f120a298daf688
+DIST imageio-2.13.0.gh.tar.gz 339891 BLAKE2B 
a9e38a855836dac3ee228376c49e9751e651530b316932a756c86f21f7c987f1f57387db1751ff0cd6673844cbfc8dcfd0bceee520ec6107290712db03ca9d9c
 SHA512 
4f63a1183a631fa192e08438cfe97936f45b9157cad73c8a27ddc378817c21db3d92bab2e7565ef9ef539c771120e158075ae1069aec60d824c40d420dd8e117

diff --git a/dev-python/imageio/imageio-2.13.0.ebuild 
b/dev-python/imageio/imageio-2.13.0.ebuild
new file mode 100644
index ..cd5928118230
--- /dev/null
+++ b/dev-python/imageio/imageio-2.13.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+   # Needs tifffile
+   tests/test_tifffile.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-23 Thread Michał Górny
commit: f7779fde63629c215a0aa8cae9f7f0212cdecbcd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 24 06:57:06 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 24 07:26:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7779fde

dev-python/imageio: Bump to 2.12.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.12.0.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 97f9c55c1381..214894d8443b 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -2,3 +2,4 @@ DIST imageio-2.10.4.gh.tar.gz 335495 BLAKE2B 
66f8662953d7023557d4fc98b9cf2cfa003
 DIST imageio-2.10.5.gh.tar.gz 335546 BLAKE2B 
1bfd418bb59f217c2108be9aedf35d1b6326d29d476ac6648041b38efa44a2220212f170cae90005e027006adfe55178dee699a1e4b37b7e948863c61432afe8
 SHA512 
2a058e8ce7e2ad650bea05573d249c1c06326dd1ed0f47517c3a0095a2e03fa2b90ffa5f8aae535e937b8b9fd8153ccb13267773183e45639205faddab08348a
 DIST imageio-2.11.0.gh.tar.gz 339057 BLAKE2B 
6dd5661866135b472a062b57b424e8ff044510488b1ccd291552f979263f2f03d3feb00ad9ab035249a2966711e804a95ff7e8f174a1f0773445782365744b6c
 SHA512 
b42f05eabcbee4fb4bb66793cca04137b4db2695269c204b2fec43527ab6a1d9e29c688061ee53c28454b64e09343d69cc931867c5aca01d47145bd734348629
 DIST imageio-2.11.1.gh.tar.gz 339241 BLAKE2B 
b197c946fe34e504979c9fe7e69179211bf72d986105175419c304b95628c02d3dae2e5e7b13902493cb6a7538bc3e5976590e25a35165c857623b62635b79b3
 SHA512 
cf33d0c96a08f29ed761e811922a31a97c36aef48022708132d5282bf5c87bb3ef67a80a98e01f57489fd4a261955e4ca231c67dfc69f5865c47a5b1f317d137
+DIST imageio-2.12.0.gh.tar.gz 339829 BLAKE2B 
5f6c38bd139c33e7fc00fad8f32cd2f9888fa61a4930021b58fc33530241cf8d40e13002cfedf21631d1ff18797a9d044288e3ffc8852276912ddd7485206ecd
 SHA512 
05824e8617470734ca4966fa4cb0b3da5ce22bbbf2ff6382d216d768b6dd3923d072a3f157d1ba23524c4b499c320d3a8e051852f656ad5cb0f120a298daf688

diff --git a/dev-python/imageio/imageio-2.12.0.ebuild 
b/dev-python/imageio/imageio-2.12.0.ebuild
new file mode 100644
index ..cd5928118230
--- /dev/null
+++ b/dev-python/imageio/imageio-2.12.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+   # Needs tifffile
+   tests/test_tifffile.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-19 Thread Michał Górny
commit: 324aa23cac7f3f5a1dbda702198fe0b7734bfe5b
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 20 04:34:00 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 20 04:34:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=324aa23c

dev-python/imageio: Bump to 2.11.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.11.1.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index b4377f0e146c..97f9c55c1381 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.10.4.gh.tar.gz 335495 BLAKE2B 
66f8662953d7023557d4fc98b9cf2cfa00346a14286b72dd1b3abf618ee6da36da341c4a57116197e0f138424ef01050cc9176c6afcf277796aa61199e5a1530
 SHA512 
562bb0d7c8e627e491910f997947a4ffe967ed6dcf3d281b07145f9c8148ca0f2d9775bc89c9024ebc9bfa54f03a60aadc30a84827c050f18dbb23286ac18b96
 DIST imageio-2.10.5.gh.tar.gz 335546 BLAKE2B 
1bfd418bb59f217c2108be9aedf35d1b6326d29d476ac6648041b38efa44a2220212f170cae90005e027006adfe55178dee699a1e4b37b7e948863c61432afe8
 SHA512 
2a058e8ce7e2ad650bea05573d249c1c06326dd1ed0f47517c3a0095a2e03fa2b90ffa5f8aae535e937b8b9fd8153ccb13267773183e45639205faddab08348a
 DIST imageio-2.11.0.gh.tar.gz 339057 BLAKE2B 
6dd5661866135b472a062b57b424e8ff044510488b1ccd291552f979263f2f03d3feb00ad9ab035249a2966711e804a95ff7e8f174a1f0773445782365744b6c
 SHA512 
b42f05eabcbee4fb4bb66793cca04137b4db2695269c204b2fec43527ab6a1d9e29c688061ee53c28454b64e09343d69cc931867c5aca01d47145bd734348629
+DIST imageio-2.11.1.gh.tar.gz 339241 BLAKE2B 
b197c946fe34e504979c9fe7e69179211bf72d986105175419c304b95628c02d3dae2e5e7b13902493cb6a7538bc3e5976590e25a35165c857623b62635b79b3
 SHA512 
cf33d0c96a08f29ed761e811922a31a97c36aef48022708132d5282bf5c87bb3ef67a80a98e01f57489fd4a261955e4ca231c67dfc69f5865c47a5b1f317d137

diff --git a/dev-python/imageio/imageio-2.11.1.ebuild 
b/dev-python/imageio/imageio-2.11.1.ebuild
new file mode 100644
index ..cd5928118230
--- /dev/null
+++ b/dev-python/imageio/imageio-2.11.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+   # Needs tifffile
+   tests/test_tifffile.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-18 Thread Michał Górny
commit: 3ef7adea19f29c14ce294d2a8cf01f16f1fa3512
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 18 08:32:21 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 18 09:16:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ef7adea

dev-python/imageio: Bump to 2.11.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.11.0.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 1bf6c23dfbc2..b4377f0e146c 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1,3 @@
 DIST imageio-2.10.4.gh.tar.gz 335495 BLAKE2B 
66f8662953d7023557d4fc98b9cf2cfa00346a14286b72dd1b3abf618ee6da36da341c4a57116197e0f138424ef01050cc9176c6afcf277796aa61199e5a1530
 SHA512 
562bb0d7c8e627e491910f997947a4ffe967ed6dcf3d281b07145f9c8148ca0f2d9775bc89c9024ebc9bfa54f03a60aadc30a84827c050f18dbb23286ac18b96
 DIST imageio-2.10.5.gh.tar.gz 335546 BLAKE2B 
1bfd418bb59f217c2108be9aedf35d1b6326d29d476ac6648041b38efa44a2220212f170cae90005e027006adfe55178dee699a1e4b37b7e948863c61432afe8
 SHA512 
2a058e8ce7e2ad650bea05573d249c1c06326dd1ed0f47517c3a0095a2e03fa2b90ffa5f8aae535e937b8b9fd8153ccb13267773183e45639205faddab08348a
+DIST imageio-2.11.0.gh.tar.gz 339057 BLAKE2B 
6dd5661866135b472a062b57b424e8ff044510488b1ccd291552f979263f2f03d3feb00ad9ab035249a2966711e804a95ff7e8f174a1f0773445782365744b6c
 SHA512 
b42f05eabcbee4fb4bb66793cca04137b4db2695269c204b2fec43527ab6a1d9e29c688061ee53c28454b64e09343d69cc931867c5aca01d47145bd734348629

diff --git a/dev-python/imageio/imageio-2.11.0.ebuild 
b/dev-python/imageio/imageio-2.11.0.ebuild
new file mode 100644
index ..cd5928118230
--- /dev/null
+++ b/dev-python/imageio/imageio-2.11.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+   # Needs tifffile
+   tests/test_tifffile.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-17 Thread Michał Górny
commit: da144cb637d597a3563b37266dcd5a6caa3a2683
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 17 19:42:13 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 17 20:46:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da144cb6

dev-python/imageio: Bump to 2.10.5

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.10.5.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index ecb32bbd8222..1bf6c23dfbc2 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
 DIST imageio-2.10.4.gh.tar.gz 335495 BLAKE2B 
66f8662953d7023557d4fc98b9cf2cfa00346a14286b72dd1b3abf618ee6da36da341c4a57116197e0f138424ef01050cc9176c6afcf277796aa61199e5a1530
 SHA512 
562bb0d7c8e627e491910f997947a4ffe967ed6dcf3d281b07145f9c8148ca0f2d9775bc89c9024ebc9bfa54f03a60aadc30a84827c050f18dbb23286ac18b96
+DIST imageio-2.10.5.gh.tar.gz 335546 BLAKE2B 
1bfd418bb59f217c2108be9aedf35d1b6326d29d476ac6648041b38efa44a2220212f170cae90005e027006adfe55178dee699a1e4b37b7e948863c61432afe8
 SHA512 
2a058e8ce7e2ad650bea05573d249c1c06326dd1ed0f47517c3a0095a2e03fa2b90ffa5f8aae535e937b8b9fd8153ccb13267773183e45639205faddab08348a

diff --git a/dev-python/imageio/imageio-2.10.5.ebuild 
b/dev-python/imageio/imageio-2.10.5.ebuild
new file mode 100644
index ..cd5928118230
--- /dev/null
+++ b/dev-python/imageio/imageio-2.10.5.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+)
+
+EPYTEST_IGNORE=(
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+   # Needs tifffile
+   tests/test_tifffile.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-14 Thread Michał Górny
commit: cf777b17ec7e7dc56c99812c9e62bc1fffa4f7cf
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 14 08:42:31 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov 14 08:46:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf777b17

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  4 ---
 dev-python/imageio/imageio-2.10.1.ebuild | 41 ---
 dev-python/imageio/imageio-2.10.2.ebuild | 41 ---
 dev-python/imageio/imageio-2.10.3.ebuild | 41 ---
 dev-python/imageio/imageio-2.9.0.ebuild  | 42 
 5 files changed, 169 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 700a59819573..ecb32bbd8222 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,5 +1 @@
-DIST imageio-2.10.1.gh.tar.gz 334497 BLAKE2B 
979107dec1c18c87a6620be90d68d24e37ae75f7418fafbe67d78fbc3de38b2ccd810e120501061d88a0029674ba814507ac73852b89559413f427986398819b
 SHA512 
2af953f6c2eda3bf1fe3cf74a241bfb7cdb01ff3712f3d7526ceb1aad38499e481fd90eb782324264804c07fcb4425bcd0983be1ef0ec1d86a9b632098944f5a
-DIST imageio-2.10.2.gh.tar.gz 334834 BLAKE2B 
6c3e4e22d60191dfd346c41dc6a070ddd0cd86975230d250ac9731014e894cc0bdca1395c332c67fbbdba8dd8eb921d4ccdc378b8d723741459a0f25c3fb7c36
 SHA512 
ef7ffc0273b14eb9b81271c2d385cb44e910ed33aec2cc8a919cbf5a6699dc4e9f26a4796891efa8c83ca7f3e1a53c9c6ab9217d50d3e2914358e1db5d6be65c
-DIST imageio-2.10.3.gh.tar.gz 335059 BLAKE2B 
81af506502edb0015f52bfa86ee3ef508d6b2ec90677d460fcdb727bb7ac4775cb6ccb5d84d0ff0d4bfe06e1ea44f67f09d3031bd093d0c026b22f561d2a8217
 SHA512 
2273d1b5c29994195508a2935577037737b7b462200f00f54d6466e325b52b8c2641d1e34ec9cdfb58ba689cb3d2c76eec857dcb72ce2464666ab657ea5adb4c
 DIST imageio-2.10.4.gh.tar.gz 335495 BLAKE2B 
66f8662953d7023557d4fc98b9cf2cfa00346a14286b72dd1b3abf618ee6da36da341c4a57116197e0f138424ef01050cc9176c6afcf277796aa61199e5a1530
 SHA512 
562bb0d7c8e627e491910f997947a4ffe967ed6dcf3d281b07145f9c8148ca0f2d9775bc89c9024ebc9bfa54f03a60aadc30a84827c050f18dbb23286ac18b96
-DIST imageio-2.9.0.gh.tar.gz 298291 BLAKE2B 
b36b0a5bf74938177353ffce103d7479a2b15442623d400261dac485b5cc7e8743b18e92d938fcfe2b68dfdef1d1417308e5441112ff851481cc768b76ab56d0
 SHA512 
a325ad4f0913219b87418d4f57fddc3f1e4c1be4102e933aa0c236317044d2a5ded623bbe86b92d3f2004bb9386ccb3f0cc03b7b118f9faa6f320dd147157ed6

diff --git a/dev-python/imageio/imageio-2.10.1.ebuild 
b/dev-python/imageio/imageio-2.10.1.ebuild
deleted file mode 100644
index 9f303080792f..
--- a/dev-python/imageio/imageio-2.10.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-BDEPEND="
-   test? (
-   dev-python/psutil[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Needs unpackaged imageio_ffmpeg
-   tests/test_ffmpeg.py
-   tests/test_ffmpeg_info.py
-)

diff --git a/dev-python/imageio/imageio-2.10.2.ebuild 
b/dev-python/imageio/imageio-2.10.2.ebuild
deleted file mode 100644
index 9f303080792f..
--- a/dev-python/imageio/imageio-2.10.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="
-   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-BDEPEND="
-   test? (
-   dev-python/psutil[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Fails because of system installed freeimage
-   tests/test_core.py::test_findlib2
-   # Needs unpackaged imageio_ffmpeg
-   tests/test_ffmpeg.py
-   tests/test_ffmpeg_info.py
-)

diff --git 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-13 Thread Michał Górny
commit: 85732e8f89abfc0df4357f84bf1b46accb58a4ae
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 13 07:32:44 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 13 09:37:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85732e8f

dev-python/imageio: Bump to 2.10.4

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.10.4.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 5c047668464..700a5981957 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,4 +1,5 @@
 DIST imageio-2.10.1.gh.tar.gz 334497 BLAKE2B 
979107dec1c18c87a6620be90d68d24e37ae75f7418fafbe67d78fbc3de38b2ccd810e120501061d88a0029674ba814507ac73852b89559413f427986398819b
 SHA512 
2af953f6c2eda3bf1fe3cf74a241bfb7cdb01ff3712f3d7526ceb1aad38499e481fd90eb782324264804c07fcb4425bcd0983be1ef0ec1d86a9b632098944f5a
 DIST imageio-2.10.2.gh.tar.gz 334834 BLAKE2B 
6c3e4e22d60191dfd346c41dc6a070ddd0cd86975230d250ac9731014e894cc0bdca1395c332c67fbbdba8dd8eb921d4ccdc378b8d723741459a0f25c3fb7c36
 SHA512 
ef7ffc0273b14eb9b81271c2d385cb44e910ed33aec2cc8a919cbf5a6699dc4e9f26a4796891efa8c83ca7f3e1a53c9c6ab9217d50d3e2914358e1db5d6be65c
 DIST imageio-2.10.3.gh.tar.gz 335059 BLAKE2B 
81af506502edb0015f52bfa86ee3ef508d6b2ec90677d460fcdb727bb7ac4775cb6ccb5d84d0ff0d4bfe06e1ea44f67f09d3031bd093d0c026b22f561d2a8217
 SHA512 
2273d1b5c29994195508a2935577037737b7b462200f00f54d6466e325b52b8c2641d1e34ec9cdfb58ba689cb3d2c76eec857dcb72ce2464666ab657ea5adb4c
+DIST imageio-2.10.4.gh.tar.gz 335495 BLAKE2B 
66f8662953d7023557d4fc98b9cf2cfa00346a14286b72dd1b3abf618ee6da36da341c4a57116197e0f138424ef01050cc9176c6afcf277796aa61199e5a1530
 SHA512 
562bb0d7c8e627e491910f997947a4ffe967ed6dcf3d281b07145f9c8148ca0f2d9775bc89c9024ebc9bfa54f03a60aadc30a84827c050f18dbb23286ac18b96
 DIST imageio-2.9.0.gh.tar.gz 298291 BLAKE2B 
b36b0a5bf74938177353ffce103d7479a2b15442623d400261dac485b5cc7e8743b18e92d938fcfe2b68dfdef1d1417308e5441112ff851481cc768b76ab56d0
 SHA512 
a325ad4f0913219b87418d4f57fddc3f1e4c1be4102e933aa0c236317044d2a5ded623bbe86b92d3f2004bb9386ccb3f0cc03b7b118f9faa6f320dd147157ed6

diff --git a/dev-python/imageio/imageio-2.10.4.ebuild 
b/dev-python/imageio/imageio-2.10.4.ebuild
new file mode 100644
index 000..9f303080792
--- /dev/null
+++ b/dev-python/imageio/imageio-2.10.4.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-06 Thread Michał Górny
commit: eb0ab38d0113076f3929d84d3f97fc74db3a100e
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  6 08:14:28 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  6 10:58:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0ab38d

dev-python/imageio: Bump to 2.10.3

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.10.3.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 2a645d8862d..5c047668464 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-2.10.1.gh.tar.gz 334497 BLAKE2B 
979107dec1c18c87a6620be90d68d24e37ae75f7418fafbe67d78fbc3de38b2ccd810e120501061d88a0029674ba814507ac73852b89559413f427986398819b
 SHA512 
2af953f6c2eda3bf1fe3cf74a241bfb7cdb01ff3712f3d7526ceb1aad38499e481fd90eb782324264804c07fcb4425bcd0983be1ef0ec1d86a9b632098944f5a
 DIST imageio-2.10.2.gh.tar.gz 334834 BLAKE2B 
6c3e4e22d60191dfd346c41dc6a070ddd0cd86975230d250ac9731014e894cc0bdca1395c332c67fbbdba8dd8eb921d4ccdc378b8d723741459a0f25c3fb7c36
 SHA512 
ef7ffc0273b14eb9b81271c2d385cb44e910ed33aec2cc8a919cbf5a6699dc4e9f26a4796891efa8c83ca7f3e1a53c9c6ab9217d50d3e2914358e1db5d6be65c
+DIST imageio-2.10.3.gh.tar.gz 335059 BLAKE2B 
81af506502edb0015f52bfa86ee3ef508d6b2ec90677d460fcdb727bb7ac4775cb6ccb5d84d0ff0d4bfe06e1ea44f67f09d3031bd093d0c026b22f561d2a8217
 SHA512 
2273d1b5c29994195508a2935577037737b7b462200f00f54d6466e325b52b8c2641d1e34ec9cdfb58ba689cb3d2c76eec857dcb72ce2464666ab657ea5adb4c
 DIST imageio-2.9.0.gh.tar.gz 298291 BLAKE2B 
b36b0a5bf74938177353ffce103d7479a2b15442623d400261dac485b5cc7e8743b18e92d938fcfe2b68dfdef1d1417308e5441112ff851481cc768b76ab56d0
 SHA512 
a325ad4f0913219b87418d4f57fddc3f1e4c1be4102e933aa0c236317044d2a5ded623bbe86b92d3f2004bb9386ccb3f0cc03b7b118f9faa6f320dd147157ed6

diff --git a/dev-python/imageio/imageio-2.10.3.ebuild 
b/dev-python/imageio/imageio-2.10.3.ebuild
new file mode 100644
index 000..9f303080792
--- /dev/null
+++ b/dev-python/imageio/imageio-2.10.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-11-05 Thread Michał Górny
commit: f9ff95c34ee885cfdd62b53371e89233bb7ad855
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov  5 09:16:53 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov  5 09:25:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9ff95c3

dev-python/imageio: Bump to 2.10.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.10.2.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 654b90731b6..2a645d8862d 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1,3 @@
 DIST imageio-2.10.1.gh.tar.gz 334497 BLAKE2B 
979107dec1c18c87a6620be90d68d24e37ae75f7418fafbe67d78fbc3de38b2ccd810e120501061d88a0029674ba814507ac73852b89559413f427986398819b
 SHA512 
2af953f6c2eda3bf1fe3cf74a241bfb7cdb01ff3712f3d7526ceb1aad38499e481fd90eb782324264804c07fcb4425bcd0983be1ef0ec1d86a9b632098944f5a
+DIST imageio-2.10.2.gh.tar.gz 334834 BLAKE2B 
6c3e4e22d60191dfd346c41dc6a070ddd0cd86975230d250ac9731014e894cc0bdca1395c332c67fbbdba8dd8eb921d4ccdc378b8d723741459a0f25c3fb7c36
 SHA512 
ef7ffc0273b14eb9b81271c2d385cb44e910ed33aec2cc8a919cbf5a6699dc4e9f26a4796891efa8c83ca7f3e1a53c9c6ab9217d50d3e2914358e1db5d6be65c
 DIST imageio-2.9.0.gh.tar.gz 298291 BLAKE2B 
b36b0a5bf74938177353ffce103d7479a2b15442623d400261dac485b5cc7e8743b18e92d938fcfe2b68dfdef1d1417308e5441112ff851481cc768b76ab56d0
 SHA512 
a325ad4f0913219b87418d4f57fddc3f1e4c1be4102e933aa0c236317044d2a5ded623bbe86b92d3f2004bb9386ccb3f0cc03b7b118f9faa6f320dd147157ed6

diff --git a/dev-python/imageio/imageio-2.10.2.ebuild 
b/dev-python/imageio/imageio-2.10.2.ebuild
new file mode 100644
index 000..9f303080792
--- /dev/null
+++ b/dev-python/imageio/imageio-2.10.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-10-28 Thread Michał Górny
commit: 74f459dbed385a2aa68d89adaab757aaf7b63fda
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 28 06:45:55 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 28 07:00:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f459db

dev-python/imageio: Bump to 2.10.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest  |  1 +
 dev-python/imageio/imageio-2.10.1.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index dd7ab85042d..654b90731b6 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
+DIST imageio-2.10.1.gh.tar.gz 334497 BLAKE2B 
979107dec1c18c87a6620be90d68d24e37ae75f7418fafbe67d78fbc3de38b2ccd810e120501061d88a0029674ba814507ac73852b89559413f427986398819b
 SHA512 
2af953f6c2eda3bf1fe3cf74a241bfb7cdb01ff3712f3d7526ceb1aad38499e481fd90eb782324264804c07fcb4425bcd0983be1ef0ec1d86a9b632098944f5a
 DIST imageio-2.9.0.gh.tar.gz 298291 BLAKE2B 
b36b0a5bf74938177353ffce103d7479a2b15442623d400261dac485b5cc7e8743b18e92d938fcfe2b68dfdef1d1417308e5441112ff851481cc768b76ab56d0
 SHA512 
a325ad4f0913219b87418d4f57fddc3f1e4c1be4102e933aa0c236317044d2a5ded623bbe86b92d3f2004bb9386ccb3f0cc03b7b118f9faa6f320dd147157ed6

diff --git a/dev-python/imageio/imageio-2.10.1.ebuild 
b/dev-python/imageio/imageio-2.10.1.ebuild
new file mode 100644
index 000..9f303080792
--- /dev/null
+++ b/dev-python/imageio/imageio-2.10.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-10-17 Thread Michał Górny
commit: 1b8a43b32549fc4ff160b343fdf508ea586549ec
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct 17 08:55:01 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct 17 08:57:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b8a43b3

dev-python/imageio: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/imageio/Manifest |  1 -
 dev-python/imageio/imageio-2.6.1.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 3f94abe61c1..dd7ab85042d 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1 @@
-DIST imageio-2.6.1.tar.gz 302911 BLAKE2B 
b0ed781b9edcbb93af664ea4e815cf90e56ab2b31abdda88dcd142558efa1c43afb89886f6b3a372fddcd200df802e45c7278fe13067bfeebf119471f573e668
 SHA512 
e4a4510a9fd0823914a9f511011cb9c191bea1cd78b2c2bba5d559fcdc89c55cd1dbb03a81eaf82c460ebb86cde518f44ff02766a9935d4f463e81a52007fe25
 DIST imageio-2.9.0.gh.tar.gz 298291 BLAKE2B 
b36b0a5bf74938177353ffce103d7479a2b15442623d400261dac485b5cc7e8743b18e92d938fcfe2b68dfdef1d1417308e5441112ff851481cc768b76ab56d0
 SHA512 
a325ad4f0913219b87418d4f57fddc3f1e4c1be4102e933aa0c236317044d2a5ded623bbe86b92d3f2004bb9386ccb3f0cc03b7b118f9faa6f320dd147157ed6

diff --git a/dev-python/imageio/imageio-2.6.1.ebuild 
b/dev-python/imageio/imageio-2.6.1.ebuild
deleted file mode 100644
index eb6898f0259..000
--- a/dev-python/imageio/imageio-2.6.1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="https://github.com/imageio/imageio/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   media-libs/freeimage
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-09-02 Thread Arthur Zamarin
commit: 98df46a8756c33918b7d25c8ada8c13326d8ae1e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Sep  2 19:55:24 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Sep  2 19:57:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98df46a8

dev-python/imageio: add 2.9.0, enable py3.10, enable tests

Closes: https://bugs.gentoo.org/798075
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/Manifest |  1 +
 dev-python/imageio/imageio-2.9.0.ebuild | 42 +
 2 files changed, 43 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 5a177910cec..3f94abe61c1 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1 +1,2 @@
 DIST imageio-2.6.1.tar.gz 302911 BLAKE2B 
b0ed781b9edcbb93af664ea4e815cf90e56ab2b31abdda88dcd142558efa1c43afb89886f6b3a372fddcd200df802e45c7278fe13067bfeebf119471f573e668
 SHA512 
e4a4510a9fd0823914a9f511011cb9c191bea1cd78b2c2bba5d559fcdc89c55cd1dbb03a81eaf82c460ebb86cde518f44ff02766a9935d4f463e81a52007fe25
+DIST imageio-2.9.0.gh.tar.gz 298291 BLAKE2B 
b36b0a5bf74938177353ffce103d7479a2b15442623d400261dac485b5cc7e8743b18e92d938fcfe2b68dfdef1d1417308e5441112ff851481cc768b76ab56d0
 SHA512 
a325ad4f0913219b87418d4f57fddc3f1e4c1be4102e933aa0c236317044d2a5ded623bbe86b92d3f2004bb9386ccb3f0cc03b7b118f9faa6f320dd147157ed6

diff --git a/dev-python/imageio/imageio-2.9.0.ebuild 
b/dev-python/imageio/imageio-2.9.0.ebuild
new file mode 100644
index 000..a90dd332538
--- /dev/null
+++ b/dev-python/imageio/imageio-2.9.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="
+   https://github.com/imageio/imageio/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+PROPERTIES="test_network"
+RESTRICT="test"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # Fails because of system installed freeimage
+   tests/test_core.py::test_findlib2
+   # Needs unpackaged imageio_ffmpeg
+   tests/test_ffmpeg.py
+   tests/test_ffmpeg_info.py
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2021-09-02 Thread Arthur Zamarin
commit: 83ef1b452aa6ff8e509f4f1bc93c3493d3b4508d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Sep  2 19:56:32 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Sep  2 19:57:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83ef1b45

dev-python/imageio: mark ALLARCHES

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/imageio/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/imageio/metadata.xml b/dev-python/imageio/metadata.xml
index 1629892fca0..2ba2196054f 100644
--- a/dev-python/imageio/metadata.xml
+++ b/dev-python/imageio/metadata.xml
@@ -15,6 +15,7 @@
video, volumetric data, and scientific formats. It is 
cross-platform,
runs on Python 2.x and 3.x, and is easy to install.

+   

imageio/imageio
imageio



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2020-11-18 Thread David Seifert
commit: 747485f1be9a1f909dc5f301abd25f18fe5d3478
Author: Jakov Smolic  sartura  hr>
AuthorDate: Wed Nov 18 18:57:31 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Nov 18 18:57:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747485f1

dev-python/imageio: add python3_9

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 dev-python/imageio/imageio-2.6.1.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-python/imageio/imageio-2.6.1.ebuild 
b/dev-python/imageio/imageio-2.6.1.ebuild
index 19e88cfe45e..83a2f758319 100644
--- a/dev-python/imageio/imageio-2.6.1.ebuild
+++ b/dev-python/imageio/imageio-2.6.1.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
 
 inherit distutils-r1
 
@@ -13,12 +14,9 @@ 
SRC_URI="https://github.com/imageio/imageio/archive/v${PV}.tar.gz -> ${P}.tar.gz
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 RDEPEND="
dev-python/numpy[${PYTHON_USEDEP}]
media-libs/freeimage
 "
 DEPEND="${RDEPEND}"
-
-BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2019-12-26 Thread David Seifert
commit: 97968f4ec7413b75a7b4a1e640337dcd3f5019d3
Author: David Seifert  gentoo  org>
AuthorDate: Thu Dec 26 14:36:06 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Dec 26 14:36:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97968f4e

dev-python/imageio: Remove old

Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-python/imageio/Manifest |  4 
 dev-python/imageio/imageio-1.5.ebuild   | 26 --
 dev-python/imageio/imageio-1.6.ebuild   | 26 --
 dev-python/imageio/imageio-2.0.1.ebuild | 26 --
 dev-python/imageio/imageio-2.1.1.ebuild | 25 -
 5 files changed, 107 deletions(-)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index c0722d1273a..5a177910cec 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,5 +1 @@
-DIST imageio-1.5.tar.gz 187004 BLAKE2B 
c2fa082ceef7be0b1571fcdd4b0a30f46ed027838d1a80aff4e379f07b031e8d7e99ff0c12d6b6c7f67ccc0e06a231e97e12ea5311715cf06bc78cc064fc380c
 SHA512 
2913353c02a26236f254c6cefce72cb8179cedeac4e1ebae435218dddfc35cbec9e806eefe99e174ca9c572c09725a697e1165f6be0bbdc657a9fcf2312c7460
-DIST imageio-1.6.tar.gz 201043 BLAKE2B 
0ab903f159c7e99bd22aff7b56f7df2afa1a9885242a346dc7e1c58240b1e8c67114f422cd3861de797a817df3e45352978448fdf83cd4f4ad0878c3b2b8c60e
 SHA512 
bbb22a8c48f54e5bec8475eea041ce361b259cd8113463fb85e6c02b9c5a9805e675eaf2c693a26d51d1609071ce92d54fe76ed5563ad48f562b465ab586bb43
-DIST imageio-2.0.1.tar.gz 224487 BLAKE2B 
ca6247f3cea3edc435d8ef8790d49fb3ce79e45df7032fae9fd05d01b8ec1ea02771ba2ff3713ba54fcf01d22feb60093f7d063c32f5cc263cf8eab9e640
 SHA512 
8adfcdb897d898806ef4a3227730a45a663eb485e126db62d8c5f79063aa8aa2b83f4a9c27d4ae47b4ca8e2ed82125d04642952c62fb29dd1fe8dfa11430bb58
-DIST imageio-2.1.1.tar.gz 227148 BLAKE2B 
d7ca2227d5efa05dc9fcde7d1edbb1c2a818beb7b9f54e8f2f1c9694b403d66c0a80954ab4e1c3e3674f7ec31ccc0caae5737c6f6f7b4b2afa56e42562ac5721
 SHA512 
a01ebf8fe9cc3761b0779107bcd610ecf4c9a5e6e789bdc15983e2f4ff65d03351266431391519cd637a98f48a1a9f91a2123191d0aed5790bc731b007a85d29
 DIST imageio-2.6.1.tar.gz 302911 BLAKE2B 
b0ed781b9edcbb93af664ea4e815cf90e56ab2b31abdda88dcd142558efa1c43afb89886f6b3a372fddcd200df802e45c7278fe13067bfeebf119471f573e668
 SHA512 
e4a4510a9fd0823914a9f511011cb9c191bea1cd78b2c2bba5d559fcdc89c55cd1dbb03a81eaf82c460ebb86cde518f44ff02766a9935d4f463e81a52007fe25

diff --git a/dev-python/imageio/imageio-1.5.ebuild 
b/dev-python/imageio/imageio-1.5.ebuild
deleted file mode 100644
index 5c9887ebb9e..000
--- a/dev-python/imageio/imageio-1.5.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="https://github.com/imageio/imageio/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   media-libs/freeimage
-   "
-DEPEND="
-   ${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   "

diff --git a/dev-python/imageio/imageio-1.6.ebuild 
b/dev-python/imageio/imageio-1.6.ebuild
deleted file mode 100644
index 5c9887ebb9e..000
--- a/dev-python/imageio/imageio-1.6.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="https://github.com/imageio/imageio/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   media-libs/freeimage
-   "
-DEPEND="
-   ${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   "

diff --git a/dev-python/imageio/imageio-2.0.1.ebuild 
b/dev-python/imageio/imageio-2.0.1.ebuild
deleted file mode 100644
index 5c9887ebb9e..000
--- a/dev-python/imageio/imageio-2.0.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library for reading and writing image data"
-HOMEPAGE="https://imageio.github.io/;
-SRC_URI="https://github.com/imageio/imageio/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   media-libs/freeimage
-   "
-DEPEND="
-   ${RDEPEND}
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2019-12-25 Thread Pacho Ramos
commit: 77a90cec9a60b87716f63018de215a5d76ed655e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Dec 25 15:58:02 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Dec 25 16:57:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77a90cec

dev-python/imageio: Bump to 2.6.1

Also drop python2 support to not rely on numpy-python2, all reverse deps
work with python3

Closes: https://bugs.gentoo.org/696644
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Pacho Ramos  gentoo.org>

 dev-python/imageio/Manifest |  1 +
 dev-python/imageio/imageio-2.6.1.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index af854fc8f42..c0722d1273a 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -2,3 +2,4 @@ DIST imageio-1.5.tar.gz 187004 BLAKE2B 
c2fa082ceef7be0b1571fcdd4b0a30f46ed027838
 DIST imageio-1.6.tar.gz 201043 BLAKE2B 
0ab903f159c7e99bd22aff7b56f7df2afa1a9885242a346dc7e1c58240b1e8c67114f422cd3861de797a817df3e45352978448fdf83cd4f4ad0878c3b2b8c60e
 SHA512 
bbb22a8c48f54e5bec8475eea041ce361b259cd8113463fb85e6c02b9c5a9805e675eaf2c693a26d51d1609071ce92d54fe76ed5563ad48f562b465ab586bb43
 DIST imageio-2.0.1.tar.gz 224487 BLAKE2B 
ca6247f3cea3edc435d8ef8790d49fb3ce79e45df7032fae9fd05d01b8ec1ea02771ba2ff3713ba54fcf01d22feb60093f7d063c32f5cc263cf8eab9e640
 SHA512 
8adfcdb897d898806ef4a3227730a45a663eb485e126db62d8c5f79063aa8aa2b83f4a9c27d4ae47b4ca8e2ed82125d04642952c62fb29dd1fe8dfa11430bb58
 DIST imageio-2.1.1.tar.gz 227148 BLAKE2B 
d7ca2227d5efa05dc9fcde7d1edbb1c2a818beb7b9f54e8f2f1c9694b403d66c0a80954ab4e1c3e3674f7ec31ccc0caae5737c6f6f7b4b2afa56e42562ac5721
 SHA512 
a01ebf8fe9cc3761b0779107bcd610ecf4c9a5e6e789bdc15983e2f4ff65d03351266431391519cd637a98f48a1a9f91a2123191d0aed5790bc731b007a85d29
+DIST imageio-2.6.1.tar.gz 302911 BLAKE2B 
b0ed781b9edcbb93af664ea4e815cf90e56ab2b31abdda88dcd142558efa1c43afb89886f6b3a372fddcd200df802e45c7278fe13067bfeebf119471f573e668
 SHA512 
e4a4510a9fd0823914a9f511011cb9c191bea1cd78b2c2bba5d559fcdc89c55cd1dbb03a81eaf82c460ebb86cde518f44ff02766a9935d4f463e81a52007fe25

diff --git a/dev-python/imageio/imageio-2.6.1.ebuild 
b/dev-python/imageio/imageio-2.6.1.ebuild
new file mode 100644
index 000..244b2d64095
--- /dev/null
+++ b/dev-python/imageio/imageio-2.6.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="https://github.com/imageio/imageio/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   media-libs/freeimage
+"
+DEPEND="${RDEPEND}"
+
+BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2018-06-24 Thread Pacho Ramos
commit: 472bf26a10f642328f658a78652788b7ee3bd1e8
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jun 24 13:29:23 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jun 24 14:22:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=472bf26a

dev-python/imageio: Support python3.6

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/imageio/imageio-2.1.1.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-python/imageio/imageio-2.1.1.ebuild 
b/dev-python/imageio/imageio-2.1.1.ebuild
index faecf0cafe9..836163de829 100644
--- a/dev-python/imageio/imageio-2.1.1.ebuild
+++ b/dev-python/imageio/imageio-2.1.1.ebuild
@@ -1,9 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit distutils-r1
 
@@ -13,7 +12,7 @@ 
SRC_URI="https://github.com/imageio/imageio/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~x86 ~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2016-12-28 Thread Patrice Clement
commit: 791b132504e884daf49c76b3178ac73ab6d663d4
Author: Horea Christian  yandex  com>
AuthorDate: Tue Dec 27 13:06:25 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Dec 28 13:27:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=791b1325

dev-python/imageio: version bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3252

 dev-python/imageio/Manifest |  1 +
 dev-python/imageio/imageio-2.1.1.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index fed56d6..cdc0e94 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,3 +1,4 @@
 DIST imageio-1.5.tar.gz 187004 SHA256 
6240f5e8391b34bdeacf23bdb8f70c7b578dc11dec1644a6ba81b4153ad512f4 SHA512 
2913353c02a26236f254c6cefce72cb8179cedeac4e1ebae435218dddfc35cbec9e806eefe99e174ca9c572c09725a697e1165f6be0bbdc657a9fcf2312c7460
 WHIRLPOOL 
0960f559cd47dcb0eeca2133a8118004b7fed7250da0c9a776d6745558345a59682f103bf2159e71c6f6571bed90a3879fb95d10c2af69ef83d80afe6b6c3a61
 DIST imageio-1.6.tar.gz 201043 SHA256 
7b6519c358b87b026f5253c4d55e21b8e84f556adab1f04ac3726937e6b4baa4 SHA512 
bbb22a8c48f54e5bec8475eea041ce361b259cd8113463fb85e6c02b9c5a9805e675eaf2c693a26d51d1609071ce92d54fe76ed5563ad48f562b465ab586bb43
 WHIRLPOOL 
1d429c1eff65e5df30d665f3819267271c5d351f448021848310f74c814306991b8b794a0279a5ece6257fc98738083c7f40f35b73072efa1e504164f674ce58
 DIST imageio-2.0.1.tar.gz 224487 SHA256 
cd0d32f7621b02faa0b5a8533e58579f011b75e2f6f8547f1c55a8c2d464664b SHA512 
8adfcdb897d898806ef4a3227730a45a663eb485e126db62d8c5f79063aa8aa2b83f4a9c27d4ae47b4ca8e2ed82125d04642952c62fb29dd1fe8dfa11430bb58
 WHIRLPOOL 
949e83d466dca03e22e73de761c343a90fd73295e23fcf00b923d88f5ab294d46784f725bc369422a458bce6072639a89856233ed2592e72c150759ed31ea01e
+DIST imageio-2.1.1.tar.gz 227148 SHA256 
7aa56f4ddfb7b1e6bf99d75293a07d2fe2bfb299fe7f2735c0690533028d SHA512 
a01ebf8fe9cc3761b0779107bcd610ecf4c9a5e6e789bdc15983e2f4ff65d03351266431391519cd637a98f48a1a9f91a2123191d0aed5790bc731b007a85d29
 WHIRLPOOL 
a2cf5042a9d88190205608e3b4da33d6905964d97ad2ebf6796d5d5545b735b4e8acff0fb35b807cc35cdd5c04c7cc4e0abc3b8f932fa5ab7397e68aaa1fbfe4

diff --git a/dev-python/imageio/imageio-2.1.1.ebuild 
b/dev-python/imageio/imageio-2.1.1.ebuild
new file mode 100644
index ..07d0d94
--- /dev/null
+++ b/dev-python/imageio/imageio-2.1.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="https://github.com/imageio/imageio/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   media-libs/freeimage
+   "
+DEPEND="
+   ${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   "



[gentoo-commits] repo/gentoo:master commit in: dev-python/imageio/

2016-12-11 Thread Michał Górny
commit: b894a191be4749db8fbafb7cc97bc72633f5d5f7
Author: Horea Christian  yandex  com>
AuthorDate: Sun Dec 11 18:39:56 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec 11 21:31:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b894a191

dev-python/imageio: version bump

Closes: https://github.com/gentoo/gentoo/pull/3089
Package-Manager: portage-2.3.3

 dev-python/imageio/Manifest |  1 +
 dev-python/imageio/imageio-2.0.1.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/imageio/Manifest b/dev-python/imageio/Manifest
index 11ee949..fed56d6 100644
--- a/dev-python/imageio/Manifest
+++ b/dev-python/imageio/Manifest
@@ -1,2 +1,3 @@
 DIST imageio-1.5.tar.gz 187004 SHA256 
6240f5e8391b34bdeacf23bdb8f70c7b578dc11dec1644a6ba81b4153ad512f4 SHA512 
2913353c02a26236f254c6cefce72cb8179cedeac4e1ebae435218dddfc35cbec9e806eefe99e174ca9c572c09725a697e1165f6be0bbdc657a9fcf2312c7460
 WHIRLPOOL 
0960f559cd47dcb0eeca2133a8118004b7fed7250da0c9a776d6745558345a59682f103bf2159e71c6f6571bed90a3879fb95d10c2af69ef83d80afe6b6c3a61
 DIST imageio-1.6.tar.gz 201043 SHA256 
7b6519c358b87b026f5253c4d55e21b8e84f556adab1f04ac3726937e6b4baa4 SHA512 
bbb22a8c48f54e5bec8475eea041ce361b259cd8113463fb85e6c02b9c5a9805e675eaf2c693a26d51d1609071ce92d54fe76ed5563ad48f562b465ab586bb43
 WHIRLPOOL 
1d429c1eff65e5df30d665f3819267271c5d351f448021848310f74c814306991b8b794a0279a5ece6257fc98738083c7f40f35b73072efa1e504164f674ce58
+DIST imageio-2.0.1.tar.gz 224487 SHA256 
cd0d32f7621b02faa0b5a8533e58579f011b75e2f6f8547f1c55a8c2d464664b SHA512 
8adfcdb897d898806ef4a3227730a45a663eb485e126db62d8c5f79063aa8aa2b83f4a9c27d4ae47b4ca8e2ed82125d04642952c62fb29dd1fe8dfa11430bb58
 WHIRLPOOL 
949e83d466dca03e22e73de761c343a90fd73295e23fcf00b923d88f5ab294d46784f725bc369422a458bce6072639a89856233ed2592e72c150759ed31ea01e

diff --git a/dev-python/imageio/imageio-2.0.1.ebuild 
b/dev-python/imageio/imageio-2.0.1.ebuild
new file mode 100644
index ..07d0d94
--- /dev/null
+++ b/dev-python/imageio/imageio-2.0.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for reading and writing image data"
+HOMEPAGE="https://imageio.github.io/;
+SRC_URI="https://github.com/imageio/imageio/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   media-libs/freeimage
+   "
+DEPEND="
+   ${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   "



  1   2   >