commit: 64392b9a679f31a898224156aa25224430f0975f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 2 03:22:04 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jun 2 04:06:49 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64392b9a
dev-python/tifffile: Bump to 2025.6.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/tifffile/Manifest | 1 +
dev-python/tifffile/tifffile-2025.6.1.ebuild | 47 ++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/dev-python/tifffile/Manifest b/dev-python/tifffile/Manifest
index 334b9df8ec75..5e5bccfe5e2c 100644
--- a/dev-python/tifffile/Manifest
+++ b/dev-python/tifffile/Manifest
@@ -1 +1,2 @@
DIST tifffile-2025.5.26.gh.tar.gz 358236 BLAKE2B
95a6b9e8d9419f539b47df7601227139b61fd889eb71455c118a8308cd1c02e1ac1ad8ec00fc413413254e96be1377a95b2142c45401fb91429021d1ce42e31b
SHA512
4915c5a4ae544c2d3a96b9f928112ff662bf8709ecd4d29605ba51fd24ccf970a26b0bb660acbf33157a58470eef90f8e56a31489522c48d70513ddb984606a3
+DIST tifffile-2025.6.1.gh.tar.gz 358697 BLAKE2B
d259b453b18d9cee6468df238816d29509818fad407c64441e7c2aa6355f94e2f89186675cb18b49d243635a27eac885365a1ac18a7c72d1caaa8b95b4e6ea2b
SHA512
acb2b58d4eab8e6d9c8e4c7830eef364073af5474abd9921105139b3396e41627e0004bb002564e347124272f604f326cbc4dfe7ddae19e8b42b841caaca94b5
diff --git a/dev-python/tifffile/tifffile-2025.6.1.ebuild
b/dev-python/tifffile/tifffile-2025.6.1.ebuild
new file mode 100644
index 000000000000..0788e2975e50
--- /dev/null
+++ b/dev-python/tifffile/tifffile-2025.6.1.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
+}