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: Sat, 02 Oct 2021 07:50:55
Message-Id: 1633161032.e39b5d98c45431653ef872e7906d014d841a2462.mgorny@gentoo
1 commit: e39b5d98c45431653ef872e7906d014d841a2462
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 2 06:25:29 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 2 07:50:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e39b5d98
7
8 dev-python/fsspec: Bump to 2021.10.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/fsspec/Manifest | 1 +
13 dev-python/fsspec/fsspec-2021.10.0.ebuild | 48 +++++++++++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/dev-python/fsspec/Manifest b/dev-python/fsspec/Manifest
17 index 9c3c0ad5480..926c0bd8222 100644
18 --- a/dev-python/fsspec/Manifest
19 +++ b/dev-python/fsspec/Manifest
20 @@ -1,3 +1,4 @@
21 DIST filesystem_spec-2021.07.0.tar.gz 301517 BLAKE2B 84b189e636eaeb4d3724e1afc44795e83b3ac576ab8640b4fee916bb7cf341c5cd6b1b475616225927693d13f204a1750f913f2e6d35b541fb8ff26ee1019400 SHA512 bea483734e6c9773d93ee93b526c8074a28f0671fbee17b39858dc7a75fd71553ca6d8d5c4e2204446bca3e7c23f6d4c8e94b62ff920e546a2b71786d0dcb388
22 DIST filesystem_spec-2021.08.1.tar.gz 303969 BLAKE2B bc67e980cb7d5def227feec16d984630703e817fb696fafd53db7c56634e8e101ac8a68ad6d3ea3b0cbed475f431b5847e3e0612cd1f5abc2bd753ef4f6004e0 SHA512 7757480ff8f113715bdf4be400af9b9c5a3f8b52abc8cc8ccc608f2fea0f3c77f074db1aa5e7ce5d0462ae86a702af8058f8a8935b99617e6803bc7344801b8e
23 DIST filesystem_spec-2021.09.0.tar.gz 311338 BLAKE2B e448c0e8a0f24f2374bf6b701bb72b10c91b0058b81947fb538ad96412170e6b71ae5e49fb0f679f0a7031f1206f706bbf4f90ecc118d89da621c5cb4f8f4875 SHA512 65ee4f7f7d1dd235dcb6dc6933bb2eb62c91cb50d08703becb0b84640c40efed09cf326478c84316f4edb3cd08650ff1d93e222083463c868e8ca2b8a9fb5f91
24 +DIST filesystem_spec-2021.10.0.tar.gz 313863 BLAKE2B eaffcbf4b7ef1821406664062961f36e8490ffc36e6b64dbd3be820785c41742f741a8f0e76db5ee0a75e2dfc609000a572ebf5c02dc9118b2a45413a498de32 SHA512 2b478a88c0aa84fb55f8946923f79900350e36395bc6110181966404e6fb6d5fbdb3b6ea19e2e7077c8167f65266a68ac962af25dfb1cfe573f5e74c34329fe8
25
26 diff --git a/dev-python/fsspec/fsspec-2021.10.0.ebuild b/dev-python/fsspec/fsspec-2021.10.0.ebuild
27 new file mode 100644
28 index 00000000000..2f83ce07260
29 --- /dev/null
30 +++ b/dev-python/fsspec/fsspec-2021.10.0.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 2020-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +inherit distutils-r1
39 +
40 +MY_P=filesystem_spec-${PV}
41 +DESCRIPTION="A specification that python filesystems should adhere to"
42 +HOMEPAGE="https://github.com/intake/filesystem_spec/
43 + https://pypi.org/project/fsspec/"
44 +SRC_URI="
45 + https://github.com/intake/filesystem_spec/archive/${PV}.tar.gz
46 + -> ${MY_P}.tar.gz"
47 +S=${WORKDIR}/${MY_P}
48 +
49 +LICENSE="BSD"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
52 +
53 +BDEPEND="
54 + dev-python/versioneer[${PYTHON_USEDEP}]
55 + test? (
56 + dev-python/aiohttp[${PYTHON_USEDEP}]
57 + dev-python/numpy[${PYTHON_USEDEP}]
58 + dev-python/requests[${PYTHON_USEDEP}]
59 + dev-vcs/git
60 + )"
61 +
62 +distutils_enable_tests pytest
63 +
64 +src_test() {
65 + git config --global user.email "you@×××××××.com" || die
66 + git config --global user.name "Your Name" || die
67 + distutils-r1_src_test
68 +}
69 +
70 +EPYTEST_DESELECT=(
71 + fsspec/tests/test_spec.py::test_find
72 +)
73 +
74 +EPYTEST_IGNORE=(
75 + # sftp and smb require server started via docker
76 + fsspec/implementations/tests/test_dbfs.py
77 + fsspec/implementations/tests/test_sftp.py
78 + fsspec/implementations/tests/test_smb.py
79 +)