diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-02-07 20:45:01 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-02-07 21:30:03 +0100 |
commit | a71b96c702417126e98a51c7a3cbd5f9fe38c7d4 (patch) | |
tree | b4e93cbdf33dbadd2a57c919b06e3d5ce05a8da2 /dev-python/imageio | |
parent | dev-python/ipyparallel: Bump to 8.2.0 (diff) | |
download | gentoo-a71b96c702417126e98a51c7a3cbd5f9fe38c7d4.tar.gz gentoo-a71b96c702417126e98a51c7a3cbd5f9fe38c7d4.tar.bz2 gentoo-a71b96c702417126e98a51c7a3cbd5f9fe38c7d4.zip |
dev-python/imageio: Bump to 2.15.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/imageio')
-rw-r--r-- | dev-python/imageio/Manifest | 1 | ||||
-rw-r--r-- | dev-python/imageio/imageio-2.15.0.ebuild | 50 |
2 files changed, 51 insertions, 0 deletions
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 000000000000..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 +) |