From 58e39a2af35fdad4fc0bf47e81dbf59c124e21ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 14 Mar 2025 07:05:17 +0100 Subject: [PATCH] dev-python/tifffile: Bump to 2025.3.13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/tifffile/Manifest | 1 + dev-python/tifffile/tifffile-2025.3.13.ebuild | 47 +++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 dev-python/tifffile/tifffile-2025.3.13.ebuild diff --git a/dev-python/tifffile/Manifest b/dev-python/tifffile/Manifest index 906b7f872ece6..75fe7866d9c07 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 0000000000000..acb6ec9229bb2 --- /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 +}