commit: 4882066525434449815abd57f8a7d260b2540222
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 13 03:54:08 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jun 13 04:15:27 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48820665
dev-python/tifffile: Bump to 2025.6.11
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/tifffile/Manifest | 1 +
dev-python/tifffile/tifffile-2025.6.11.ebuild | 47 +++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/dev-python/tifffile/Manifest b/dev-python/tifffile/Manifest
index 2137daee584f..529b80100ff8 100644
--- a/dev-python/tifffile/Manifest
+++ b/dev-python/tifffile/Manifest
@@ -1 +1,2 @@
DIST tifffile-2025.6.1.gh.tar.gz 358697 BLAKE2B
d259b453b18d9cee6468df238816d29509818fad407c64441e7c2aa6355f94e2f89186675cb18b49d243635a27eac885365a1ac18a7c72d1caaa8b95b4e6ea2b
SHA512
acb2b58d4eab8e6d9c8e4c7830eef364073af5474abd9921105139b3396e41627e0004bb002564e347124272f604f326cbc4dfe7ddae19e8b42b841caaca94b5
+DIST tifffile-2025.6.11.gh.tar.gz 359003 BLAKE2B
7135786b6f65c1b7dc1babf7815ce97a29882793a03e335bb1142aceb4db82315f191909fa064e48bee812fce2d68e57ace1a973513b5288bfcd86aebc62babe
SHA512
b4202971e61c225578fd4f0d038599e21418801727b45738de92f0dc8bdffb3cd9b6b61777fb7898b90751c6b34de8b62e7c99240e67d565d0558e1523363519
diff --git a/dev-python/tifffile/tifffile-2025.6.11.ebuild
b/dev-python/tifffile/tifffile-2025.6.11.ebuild
new file mode 100644
index 000000000000..0788e2975e50
--- /dev/null
+++ b/dev-python/tifffile/tifffile-2025.6.11.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2021-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Read and write TIFF files"
+HOMEPAGE="
+ https://pypi.org/project/tifffile/
+ https://github.com/cgohlke/tifffile/
+ https://www.cgohlke.com/
+"
+SRC_URI="
+ https://github.com/cgohlke/tifffile/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+ >=dev-python/numpy-1.19.2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/defusedxml[${PYTHON_USEDEP}]
+ >=dev-python/fsspec-2021.5.0[${PYTHON_USEDEP}]
+ dev-python/lxml[${PYTHON_USEDEP}]
+ dev-python/xarray[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+python_test() {
+ local -x SKIP_LARGE=1
+ local -x SKIP_HTTP=1
+
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest
+}