commit: 678287e30812b36a6bb51de4352a28d0578fdabf
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 25 03:04:36 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 25 03:25:58 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=678287e3
dev-python/tifffile: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/tifffile/Manifest | 1 -
dev-python/tifffile/tifffile-2026.2.16.ebuild | 56 ---------------------------
2 files changed, 57 deletions(-)
diff --git a/dev-python/tifffile/Manifest b/dev-python/tifffile/Manifest
index 35b164a4fec6..5d6dabab41f3 100644
--- a/dev-python/tifffile/Manifest
+++ b/dev-python/tifffile/Manifest
@@ -1,2 +1 @@
-DIST tifffile-2026.2.16.gh.tar.gz 366381 BLAKE2B
5c6777fbd25e79a76ccb19874f4e5ec48e44bfd74401d19cf96d9a75b3c574035e8ea31b984552c5263b2a15f2b0ad7d176676d3a720b90407ef1464ea988fe6
SHA512
3c17572ae4c03149c873e5e9acfec9e2b4e087a2b4b45c5146d99f1a2f50ba91c191d152eef6d91f7018419a24a8e73687710b629f82daafed11750786430372
DIST tifffile-2026.2.20.gh.tar.gz 367678 BLAKE2B
61cdadbdc0cdd9a274c49d6db56ab04e033f6fc6c7ead77bcdbcbeacee10dd13e68723a8d1b8fb5831e38c712a94cce3f0c3100690b87fa102edb18fc9e8944e
SHA512
e2b8b303d834ea87243cca3ba7f0052710b4393d5a81e6aa38cad5eaacce5a87af0992a1a07e808dbda732cf5f8be310511222a850a6ec472131ada48f54b8d3
diff --git a/dev-python/tifffile/tifffile-2026.2.16.ebuild
b/dev-python/tifffile/tifffile-2026.2.16.ebuild
deleted file mode 100644
index af4476f21e15..000000000000
--- a/dev-python/tifffile/tifffile-2026.2.16.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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_{11..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-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_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
-}