summaryrefslogtreecommitdiff
path: root/dev-python/fsspec/fsspec-2022.11.0.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-02-21 08:55:16 +0100
committerMichał Górny <mgorny@gentoo.org>2023-02-21 08:55:16 +0100
commit7ed462d53fdf906a2c2acf1013f8d5ce7cd79a93 (patch)
tree2f18a00f214a36292c029b48ca65f6e88bbe6bbc /dev-python/fsspec/fsspec-2022.11.0.ebuild
parent5ffbe8db1a018f98a794a29b91c9959b64aabb35 (diff)
downloadgentoo-7ed462d53fdf906a2c2acf1013f8d5ce7cd79a93.tar.gz
gentoo-7ed462d53fdf906a2c2acf1013f8d5ce7cd79a93.tar.bz2
gentoo-7ed462d53fdf906a2c2acf1013f8d5ce7cd79a93.zip
dev-python/fsspec: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/fsspec/fsspec-2022.11.0.ebuild')
-rw-r--r--dev-python/fsspec/fsspec-2022.11.0.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-python/fsspec/fsspec-2022.11.0.ebuild b/dev-python/fsspec/fsspec-2022.11.0.ebuild
deleted file mode 100644
index 72f48d0ddfb9..000000000000
--- a/dev-python/fsspec/fsspec-2022.11.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-MY_P=filesystem_spec-${PV}
-DESCRIPTION="A specification that python filesystems should adhere to"
-HOMEPAGE="
- https://github.com/fsspec/filesystem_spec/
- https://pypi.org/project/fsspec/
-"
-SRC_URI="
- https://github.com/fsspec/filesystem_spec/archive/${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
-
-BDEPEND="
- test? (
- dev-python/aiohttp[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/pytest-asyncio[${PYTHON_USEDEP}]
- dev-python/pytest-mock[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/tqdm[${PYTHON_USEDEP}]
- dev-vcs/git
- )
-"
-
-distutils_enable_tests pytest
-
-src_test() {
- git config --global user.email "you@example.com" || die
- git config --global user.name "Your Name" || die
- distutils-r1_src_test
-}
-
-EPYTEST_DESELECT=(
- fsspec/tests/test_spec.py::test_find
-)
-
-EPYTEST_IGNORE=(
- # sftp and smb require server started via docker
- fsspec/implementations/tests/test_dbfs.py
- fsspec/implementations/tests/test_sftp.py
- fsspec/implementations/tests/test_smb.py
- # unhappy about dev-python/fuse-python (?)
- fsspec/tests/test_fuse.py
-)