public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fsspec/
Date: Sat,  6 Apr 2024 12:37:29 +0000 (UTC)	[thread overview]
Message-ID: <1712407041.35052cc8cc7b0cc579830dfa685b056e0ee5e7a5.mgorny@gentoo> (raw)

commit:     35052cc8cc7b0cc579830dfa685b056e0ee5e7a5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  6 12:34:07 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr  6 12:37:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35052cc8

dev-python/fsspec: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/fsspec/Manifest               |  2 -
 dev-python/fsspec/fsspec-2024.2.0.ebuild | 70 --------------------------------
 dev-python/fsspec/fsspec-2024.3.0.ebuild | 70 --------------------------------
 3 files changed, 142 deletions(-)

diff --git a/dev-python/fsspec/Manifest b/dev-python/fsspec/Manifest
index 1d4fa31d3e78..7576b8b44ccd 100644
--- a/dev-python/fsspec/Manifest
+++ b/dev-python/fsspec/Manifest
@@ -1,3 +1 @@
-DIST filesystem_spec-2024.2.0.gh.tar.gz 424600 BLAKE2B 548f77229dd936437cbafcd4e8df2a5c25e6244ba5c95553cb84eabbb6d8c2aa16313896b4aecbb6c921d01f84c6c5517b13a2cf1552cac0fa29da8034873143 SHA512 ca8c7c448984ecd9b128608f2c028cf32baf3cda3f22addde80c3bef5c1e5644e010b739fb5d28dc951151fdafb4006def080e8c2c769179b1d145ad6e2f9370
-DIST filesystem_spec-2024.3.0.gh.tar.gz 426296 BLAKE2B 815b8004f5f04e7c831d4b31e0d667b63f9dc13d2ccbb5cd3e33292ec75a8952e4eceaa9e1f2547de3ab53111e1154c9ca36b4e48ea21e3235a409ee00e409b6 SHA512 f6b05e5724cb640a3526b37f6368327788cf87bb9e4a523f79af846aa682dbd193b1699854e8f7c57849ba7a6805a422d56aad77049e4500a5ca2c0966ab183e
 DIST filesystem_spec-2024.3.1.gh.tar.gz 426712 BLAKE2B 9e9c60f581872559bd667e8e3fadcb5c4c56a727901ffc2328b67da6a4553ae2e4981f143838532faa59deb9b3f3926e1e2f0b2dd86daf49f93a1811d4e668a4 SHA512 6b93543b729eae898a71fb0249ed69973cb1d2dfcf0feac7d40fb69b40e1109739819acbec9f239023b8a5eaaba01377215458cb5c4c806741ed319433d8f570

diff --git a/dev-python/fsspec/fsspec-2024.2.0.ebuild b/dev-python/fsspec/fsspec-2024.2.0.ebuild
deleted file mode 100644
index 5838f67c5f3f..000000000000
--- a/dev-python/fsspec/fsspec-2024.2.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 2020-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-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
-	)
-"
-
-# Note: this package is not xdist-friendly
-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
-}
-
-python_test() {
-	local EPYTEST_DESELECT=(
-		fsspec/tests/test_spec.py::test_find
-		# requires s3fs
-		fsspec/implementations/tests/test_local.py::test_urlpath_inference_errors
-		fsspec/tests/test_core.py::test_mismatch
-		# requires pyarrow, fastparquet
-		fsspec/implementations/tests/test_reference.py::test_df_single
-		fsspec/implementations/tests/test_reference.py::test_df_multi
-	)
-
-	local 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
-	)
-
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	epytest -p asyncio -p pytest_mock -o tmp_path_retention_policy=all
-}

diff --git a/dev-python/fsspec/fsspec-2024.3.0.ebuild b/dev-python/fsspec/fsspec-2024.3.0.ebuild
deleted file mode 100644
index 68c6f4a4b1af..000000000000
--- a/dev-python/fsspec/fsspec-2024.3.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 2020-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-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
-	)
-"
-
-# Note: this package is not xdist-friendly
-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
-}
-
-python_test() {
-	local EPYTEST_DESELECT=(
-		fsspec/tests/test_spec.py::test_find
-		# requires s3fs
-		fsspec/implementations/tests/test_local.py::test_urlpath_inference_errors
-		fsspec/tests/test_core.py::test_mismatch
-		# requires pyarrow, fastparquet
-		fsspec/implementations/tests/test_reference.py::test_df_single
-		fsspec/implementations/tests/test_reference.py::test_df_multi
-	)
-
-	local 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
-	)
-
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	epytest -p asyncio -p pytest_mock -o tmp_path_retention_policy=all
-}


             reply	other threads:[~2024-04-06 12:37 UTC|newest]

Thread overview: 143+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-06 12:37 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-01  7:15 [gentoo-commits] repo/gentoo:master commit in: dev-python/fsspec/ Michał Górny
2025-03-31  7:10 Michał Górny
2025-03-22 11:41 Michał Górny
2025-03-22 11:28 Arthur Zamarin
2025-03-08  7:24 Michał Górny
2025-02-22  9:20 Michał Górny
2025-02-22  8:47 Arthur Zamarin
2025-02-02  3:22 Michał Górny
2025-01-04 15:00 Michał Górny
2025-01-04 13:28 Sam James
2024-12-20  8:23 Michał Górny
2024-11-09 10:20 Arthur Zamarin
2024-10-21  4:35 Michał Górny
2024-10-19  8:44 Michał Górny
2024-10-19  8:20 Arthur Zamarin
2024-07-13 12:02 Michał Górny
2024-07-13 10:00 Arthur Zamarin
2024-06-27 20:24 Arthur Zamarin
2024-06-27 20:24 Arthur Zamarin
2024-06-27 19:09 Michał Górny
2024-06-18 18:45 Michał Górny
2024-06-18 18:12 Arthur Zamarin
2024-06-04  5:41 Michał Górny
2024-06-01  8:09 Michał Górny
2024-06-01  7:39 Arthur Zamarin
2024-05-16  3:42 Michał Górny
2024-04-06 10:12 Arthur Zamarin
2024-03-19  7:20 Michał Górny
2024-03-16  6:54 Michał Górny
2024-02-20  9:09 Michał Górny
2024-02-20  7:55 Sam James
2024-02-05 14:34 Michał Górny
2024-02-05  3:52 Michał Górny
2023-12-30 14:40 Michał Górny
2023-12-30 14:26 Arthur Zamarin
2023-12-25  9:30 Alfredo Tupone
2023-12-20 15:56 Michał Górny
2023-12-20 15:51 Michał Górny
2023-12-12  6:32 Michał Górny
2023-12-06  6:51 Michał Górny
2023-12-03  4:20 Michał Górny
2023-11-24 14:46 Michał Górny
2023-11-23 16:08 Michał Górny
2023-11-23 16:08 Michał Górny
2023-10-22  6:55 Michał Górny
2023-10-06 15:08 Michał Górny
2023-10-06 14:55 Sam James
2023-09-23  5:59 Michał Górny
2023-09-16  3:03 Michał Górny
2023-09-02 14:13 Michał Górny
2023-09-02 14:11 Michał Górny
2023-07-24 11:09 Michał Górny
2023-06-10  4:40 Michał Górny
2023-05-13 16:06 Michał Górny
2023-05-13 11:35 Arthur Zamarin
2023-05-08  4:31 Michał Górny
2023-04-09  6:08 Michał Górny
2023-04-05  8:21 Michał Górny
2023-04-05  7:49 Arthur Zamarin
2023-03-05  3:56 Michał Górny
2023-02-21  8:00 Michał Górny
2023-02-20 21:58 Arthur Zamarin
2023-01-20  4:50 Michał Górny
2022-12-17  7:15 Michał Górny
2022-11-25 20:33 Arthur Zamarin
2022-11-25 19:11 Sam James
2022-11-11  6:41 Arthur Zamarin
2022-10-21  7:48 Michał Górny
2022-10-05 19:23 Michał Górny
2022-10-05 11:35 Sam James
2022-10-03  6:50 Michał Górny
2022-09-03  8:12 Arthur Zamarin
2022-09-01 19:42 Arthur Zamarin
2022-08-31 18:07 Arthur Zamarin
2022-08-31  9:21 Michał Górny
2022-08-30 19:01 Michał Górny
2022-08-30 17:09 Jakov Smolić
2022-07-29 10:12 Arthur Zamarin
2022-06-17 12:44 Michał Górny
2022-06-17 11:48 Jakov Smolić
2022-06-11  6:45 Michał Górny
2022-06-11  6:45 Michał Górny
2022-05-30  7:22 Michał Górny
2022-05-20 11:12 Michał Górny
2022-05-20  8:29 Michał Górny
2022-05-06 13:30 Michał Górny
2022-05-06 12:45 Jakov Smolić
2022-03-27  8:17 Michał Górny
2022-03-27  6:27 Agostino Sarubbo
2022-02-23 17:04 Michał Górny
2022-02-23  8:12 Michał Górny
2022-02-17 21:52 Michał Górny
2022-02-17 21:21 Arthur Zamarin
2022-01-28 18:41 Arthur Zamarin
2022-01-12  8:36 Michał Górny
2021-12-10 17:12 Arthur Zamarin
2021-12-10 12:11 Jakov Smolić
2021-11-27  7:19 Michał Górny
2021-11-06 10:59 Michał Górny
2021-10-31 20:26 Michał Górny
2021-10-15 21:07 Michał Górny
2021-10-10 16:18 Michał Górny
2021-10-02  7:50 Michał Górny
2021-09-24  6:33 Michał Górny
2021-09-03 14:41 Arthur Zamarin
2021-09-01  4:55 Michał Górny
2021-08-16  5:13 Agostino Sarubbo
2021-07-28  9:08 Michał Górny
2021-07-28  6:42 Agostino Sarubbo
2021-07-15 18:12 Michał Górny
2021-06-15  8:33 Michał Górny
2021-06-15  7:07 Agostino Sarubbo
2021-05-15  8:39 Michał Górny
2021-05-09  9:15 Agostino Sarubbo
2021-04-29  7:28 Michał Górny
2021-04-17  6:22 Michał Górny
2021-04-06  7:22 Michał Górny
2021-02-23 18:43 Michał Górny
2021-01-20  8:54 Michał Górny
2021-01-20  7:41 Agostino Sarubbo
2020-12-16 10:40 Michał Górny
2020-12-06 18:33 Sam James
2020-12-06 18:32 Sam James
2020-10-18 19:17 Sam James
2020-10-18 18:51 Thomas Deutschmann
2020-10-04 17:56 Sam James
2020-10-04 17:55 Sam James
2020-10-04 17:41 Sam James
2020-09-18 15:19 Michał Górny
2020-09-18 15:19 Michał Górny
2020-09-18 14:48 Michał Górny
2020-09-10 22:03 Michał Górny
2020-09-09 22:16 Michał Górny
2020-09-08 19:11 Michał Górny
2020-08-18  5:52 Sam James
2020-08-18  5:28 Sam James
2020-08-07 19:19 Sam James
2020-08-01 10:09 Michał Górny
2020-07-07 15:36 Michał Górny
2020-07-07  6:35 Michał Górny
2020-07-06 14:13 Michał Górny
2020-06-14 12:04 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1712407041.35052cc8cc7b0cc579830dfa685b056e0ee5e7a5.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox