summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2026-01-30 07:45:00 +0100
committerMichał Górny <mgorny@gentoo.org>2026-01-30 08:04:00 +0100
commitdd4e4a12a7b60a5d75e45b60cc1202feaea9f4a7 (patch)
treec7fbc59cbf9d870baedc45e42700c6d048f0d3fd /dev-python
parente7e24c8a090eb6993bc03f3233be7ac3a97a18ae (diff)
downloadgentoo-dd4e4a12a7b60a5d75e45b60cc1202feaea9f4a7.tar.gz
gentoo-dd4e4a12a7b60a5d75e45b60cc1202feaea9f4a7.tar.bz2
gentoo-dd4e4a12a7b60a5d75e45b60cc1202feaea9f4a7.zip
dev-python/tifffile: Remove old
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.12.20.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/dev-python/tifffile/Manifest b/dev-python/tifffile/Manifest
index 21b268dbe6ea..f1261321ae4b 100644
--- a/dev-python/tifffile/Manifest
+++ b/dev-python/tifffile/Manifest
@@ -1,2 +1 @@
-DIST tifffile-2025.12.20.gh.tar.gz 364177 BLAKE2B f271c0f353eb444795a4913464d30196058d8b4eb980e5708f9ffa5b07b2744c621c9c76eb7f0f70a5e12e54875fa48993f1abc31a89254625563300eff93fc5 SHA512 88a918d61cca690433f8176c48624419d9367178fb28c0e1f102391c28c8552c04babf32656ddb28f443adf1872e86545550bf20568cea36b752dbda54a2fe34
DIST tifffile-2026.1.14.gh.tar.gz 364333 BLAKE2B 0004b104a9fc03dc92c61d89e560c3039985ec63c4166a1fc1170de9655862829d7aa75eda2c370ba7267f53c0fefb7b7bdfaa6deb4fce5034f6e26a9b524f62 SHA512 321585969e8efc6054a3a2fa3f218fde1cd2ae92c0d2114d94bb93fbfa9a5cd181ac5d470cc827002931dbb7421e4d4d667494c33082162469a0932fdf9399af
diff --git a/dev-python/tifffile/tifffile-2025.12.20.ebuild b/dev-python/tifffile/tifffile-2025.12.20.ebuild
deleted file mode 100644
index bd99106bec9c..000000000000
--- a/dev-python/tifffile/tifffile-2025.12.20.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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..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
-}