summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-03-14 07:05:17 +0100
committerMichał Górny <mgorny@gentoo.org>2025-03-14 07:32:08 +0100
commit58e39a2af35fdad4fc0bf47e81dbf59c124e21ae (patch)
tree18d69d06fe2df27d6a822974657b81c58aec9a70 /dev-python
parente8f11f9e69e580d5eb15747ca3202349f3115f16 (diff)
downloadgentoo-58e39a2af35fdad4fc0bf47e81dbf59c124e21ae.tar.gz
gentoo-58e39a2af35fdad4fc0bf47e81dbf59c124e21ae.tar.bz2
gentoo-58e39a2af35fdad4fc0bf47e81dbf59c124e21ae.zip
dev-python/tifffile: Bump to 2025.3.13
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/tifffile/Manifest1
-rw-r--r--dev-python/tifffile/tifffile-2025.3.13.ebuild47
2 files changed, 48 insertions, 0 deletions
diff --git a/dev-python/tifffile/Manifest b/dev-python/tifffile/Manifest
index 906b7f872ece..75fe7866d9c0 100644
--- a/dev-python/tifffile/Manifest
+++ b/dev-python/tifffile/Manifest
@@ -1 +1,2 @@
DIST tifffile-2025.2.18.gh.tar.gz 354422 BLAKE2B 1ff38102d337396b2b0bd0daf4ce1e63a349eb59249c84734e4d7ad435560adc783991e84db712046917915b8529a58060474f4d89a6e45d0b8e95514d6a81f0 SHA512 f9a5d6efbf4560efcc231c4c0188088e3fa31643874539e36b6be25c74969ce105111224e6d3d262041a1aa8efeaf2abf05bd66c32742ba9ae195a0c7c2a86c4
+DIST tifffile-2025.3.13.gh.tar.gz 354962 BLAKE2B 3120374da357062e7621eb402cee3d55ae7ce58975fd25bed24c308a8e9db9a34fd5380933fe6f82ac2a0a64870661330cfff91cb0dc966c6c3e770255e2927c SHA512 7aee1877e6b833abdd9b7e1672fa34866e3c3464fb82695db461e25e615c0d79f76f1f3ba87b9a0e9ad8cf467c45d92aa5560bb0e799aeb3546a6552f4d104d6
diff --git a/dev-python/tifffile/tifffile-2025.3.13.ebuild b/dev-python/tifffile/tifffile-2025.3.13.ebuild
new file mode 100644
index 000000000000..acb6ec9229bb
--- /dev/null
+++ b/dev-python/tifffile/tifffile-2025.3.13.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_{10..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
+}