From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F14E6158091 for ; Sat, 11 Jun 2022 06:45:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EE0AE0826; Sat, 11 Jun 2022 06:45:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F5AAE0826 for ; Sat, 11 Jun 2022 06:45:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 197A2341292 for ; Sat, 11 Jun 2022 06:45:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AFA9A303 for ; Sat, 11 Jun 2022 06:45:51 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1654929948.862b87c846fbb31953a4830cbe1853bca7bc25b5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fsspec/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/fsspec/fsspec-2022.5.0.ebuild X-VCS-Directories: dev-python/fsspec/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 862b87c846fbb31953a4830cbe1853bca7bc25b5 X-VCS-Branch: master Date: Sat, 11 Jun 2022 06:45:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ef575338-5ebb-4308-aba9-ab4cf044154c X-Archives-Hash: c480bda3d74fa953b40a4b34045249b8 commit: 862b87c846fbb31953a4830cbe1853bca7bc25b5 Author: Michał Górny gentoo org> AuthorDate: Sat Jun 11 06:43:02 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 11 06:45:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=862b87c8 dev-python/fsspec: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/fsspec/fsspec-2022.5.0.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-python/fsspec/fsspec-2022.5.0.ebuild b/dev-python/fsspec/fsspec-2022.5.0.ebuild index d1a992aa38bb..5cf31035bb5c 100644 --- a/dev-python/fsspec/fsspec-2022.5.0.ebuild +++ b/dev-python/fsspec/fsspec-2022.5.0.ebuild @@ -4,17 +4,20 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..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/" +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}.tar.gz" + -> ${MY_P}.tar.gz +" S=${WORKDIR}/${MY_P} LICENSE="BSD"