summaryrefslogtreecommitdiff
path: root/dev-python/tifffile
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2026-08-16 03:37:08 +0200
committerMichał Górny <mgorny@gentoo.org>2026-08-16 04:36:17 +0200
commit3f2355e912f9bc251adc449796bc4cec0ea18582 (patch)
tree0fe5b8de9daaaf029bb8d08c0a6794dc0641395e /dev-python/tifffile
parent65ef828a85cffdb90175c411a68e3a7ed21a68ea (diff)
dev-python/tifffile: Bump to 2026.8.16
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/tifffile')
-rw-r--r--dev-python/tifffile/Manifest1
-rw-r--r--dev-python/tifffile/tifffile-2026.8.16.ebuild56
2 files changed, 57 insertions, 0 deletions
diff --git a/dev-python/tifffile/Manifest b/dev-python/tifffile/Manifest
index 79d9e2c72551..e125f1712adf 100644
--- a/dev-python/tifffile/Manifest
+++ b/dev-python/tifffile/Manifest
@@ -1 +1,2 @@
DIST tifffile-2026.7.31.gh.tar.gz 424793 BLAKE2B 78c38e4b0d73f5afa2643644e0480a910f1d8497b5146196e852a0911e3e5bc56c628f9b5ed0561c6296910bcd03d629b7aa526e2ff45461987ab621eaca733b SHA512 d716ba26450d0fc05382bc0a1280bc9b67c7f2a909e59e838b0bdd5d49c45c822f89c2d3f897bc751057dd499e6d4c8fa8a04c9b96327d408ad56b7ccdfc3fdf
+DIST tifffile-2026.8.16.gh.tar.gz 424743 BLAKE2B 771c8e1fc915a5870abe428fde241698d49ac26e5a8bda27ce3ebc4959470ce77a4a9c99bb527173601b18518f09701e6d902e703c2b0b19e279445245c1cee3 SHA512 60f4fd4dcd07ea926b036e3220f4a2330c0a9974710f12d990080dd5fd4218c88293bad215e152de93d17ad7c7fcc4428c6d91c97cd8747d8ecc3d1f6fa2e3c3
diff --git a/dev-python/tifffile/tifffile-2026.8.16.ebuild b/dev-python/tifffile/tifffile-2026.8.16.ebuild
new file mode 100644
index 000000000000..637e43979e1e
--- /dev/null
+++ b/dev-python/tifffile/tifffile-2026.8.16.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2021-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{12..14} )
+
+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-2.1[${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_PLUGINS=()
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # not marked properly
+ # https://github.com/cgohlke/tifffile/pull/308
+ tests/test_tifffile.py::test_issue_dcp
+ # meaningless and broken on py<3.13
+ # https://github.com/cgohlke/tifffile/pull/309
+ tests/test_tifffile.py::test_gil_enabled
+ )
+
+ local -x SKIP_LARGE=1
+ local -x SKIP_HTTP=1
+
+ epytest
+}