Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fsspec/
Date: Sun, 27 Mar 2022 08:17:12
Message-Id: 1648369020.def940653f0e514af56849a8d4a432fa3c97a4d3.mgorny@gentoo
1 commit: def940653f0e514af56849a8d4a432fa3c97a4d3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 08:14:50 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 08:17:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=def94065
7
8 dev-python/fsspec: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/fsspec/Manifest | 1 -
13 dev-python/fsspec/fsspec-2022.01.0.ebuild | 48 -------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-python/fsspec/Manifest b/dev-python/fsspec/Manifest
17 index 97e14ea7d6b8..3d6c3e1691f0 100644
18 --- a/dev-python/fsspec/Manifest
19 +++ b/dev-python/fsspec/Manifest
20 @@ -1,2 +1 @@
21 -DIST filesystem_spec-2022.01.0.tar.gz 325470 BLAKE2B 1a6dccad133a449ba9b78516f968586a0f300e97150a6aa887f2f65fafe6e2bae708620ef185789024a7248877405d736839292011f3db2221c119fb80bbb5ac SHA512 50e36c9aded9ee9824694bad563b8e92ee564c6fb6fc30d3a51b8b2e8b4a1e5f605fdbaff00eefb354b0201cce4bced0ed95b48817c5ef15ad1f09965d311ac0
22 DIST filesystem_spec-2022.02.0.tar.gz 329625 BLAKE2B c3d3815ece4cc3a0713d2ee6fd70c55a3236c926dd389dd55866bd6a11c63e6225cd4415dd310876b8e271bf82534826452a3327693f94bd8c8b5b7aa7893222 SHA512 6cc26cb61c75fea4ab7af37190a623a4fa07d85ff540accc4d85e8ebab5f6bcc78099e85a6196f93c9d7f4e0e0380395ad2625b485858fb8db40f7c2682f8c4d
23
24 diff --git a/dev-python/fsspec/fsspec-2022.01.0.ebuild b/dev-python/fsspec/fsspec-2022.01.0.ebuild
25 deleted file mode 100644
26 index a3c732053c68..000000000000
27 --- a/dev-python/fsspec/fsspec-2022.01.0.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 2020-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -inherit distutils-r1
37 -
38 -MY_P=filesystem_spec-${PV}
39 -DESCRIPTION="A specification that python filesystems should adhere to"
40 -HOMEPAGE="https://github.com/fsspec/filesystem_spec/
41 - https://pypi.org/project/fsspec/"
42 -SRC_URI="
43 - https://github.com/fsspec/filesystem_spec/archive/${PV}.tar.gz
44 - -> ${MY_P}.tar.gz"
45 -S=${WORKDIR}/${MY_P}
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
50 -
51 -BDEPEND="
52 - dev-python/versioneer[${PYTHON_USEDEP}]
53 - test? (
54 - dev-python/aiohttp[${PYTHON_USEDEP}]
55 - dev-python/numpy[${PYTHON_USEDEP}]
56 - dev-python/requests[${PYTHON_USEDEP}]
57 - dev-vcs/git
58 - )"
59 -
60 -distutils_enable_tests pytest
61 -
62 -src_test() {
63 - git config --global user.email "you@×××××××.com" || die
64 - git config --global user.name "Your Name" || die
65 - distutils-r1_src_test
66 -}
67 -
68 -EPYTEST_DESELECT=(
69 - fsspec/tests/test_spec.py::test_find
70 -)
71 -
72 -EPYTEST_IGNORE=(
73 - # sftp and smb require server started via docker
74 - fsspec/implementations/tests/test_dbfs.py
75 - fsspec/implementations/tests/test_sftp.py
76 - fsspec/implementations/tests/test_smb.py
77 -)