summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-10-06 06:36:07 +0200
committerMichał Górny <mgorny@gentoo.org>2025-10-06 07:24:01 +0200
commita172dea64315fddc06b783cc60b25fc0f64a4c06 (patch)
tree05804d34fbef7bca70ef4d29b04bde7a0652ae63 /dev-python
parentedf46dee5258c662681a8d052513e5c58d5195b7 (diff)
downloadgentoo-a172dea64315fddc06b783cc60b25fc0f64a4c06.tar.gz
gentoo-a172dea64315fddc06b783cc60b25fc0f64a4c06.tar.bz2
gentoo-a172dea64315fddc06b783cc60b25fc0f64a4c06.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.9.20.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/dev-python/tifffile/Manifest b/dev-python/tifffile/Manifest
index ada0a2e95f65..36ebe24d2c87 100644
--- a/dev-python/tifffile/Manifest
+++ b/dev-python/tifffile/Manifest
@@ -1,2 +1 @@
-DIST tifffile-2025.9.20.gh.tar.gz 359328 BLAKE2B 4180d84b85d58ae2d1be15a0eea5ff53ecfe06181e7c3444f54a5b3d9e3f911d07d7a9fda8762847ba6002fe0f0a9ec3d29306f104ca23665ad52a8946886e04 SHA512 4e1f849f35fed303e6aeed13fb594a1665f82412ad77d28dcd7b044869b942dfff1c19ad63a6c64b87721a11ebc0eb1b9538dfede716711a74603e148f34ec0a
DIST tifffile-2025.9.30.gh.tar.gz 359562 BLAKE2B accdc42dce218781d61b29b8931a73ebf4889f54e517940f5d00f897f07f3c175bd8e39aafa27c03e3eda624e8687dcb1ab1827878759edb2a1fef6ce07acec3 SHA512 77de77c7f3f013adcf5760353f20236180176282a958d3390161bcc456fdc47231883d86325a064b156fcb7e14acc48cb2b4b109d11a79ab298a1c6b6ef622bb
diff --git a/dev-python/tifffile/tifffile-2025.9.20.ebuild b/dev-python/tifffile/tifffile-2025.9.20.ebuild
deleted file mode 100644
index fa979d88561c..000000000000
--- a/dev-python/tifffile/tifffile-2025.9.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..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_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
-}