From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1394556-garchives=archives.gentoo.org@lists.gentoo.org> 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 01A4B158090 for <garchives@archives.gentoo.org>; Mon, 9 May 2022 20:38:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DD9AE089C; Mon, 9 May 2022 20:38:50 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 02169E089A for <gentoo-commits@lists.gentoo.org>; Mon, 9 May 2022 20:38:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4CD4434146B for <gentoo-commits@lists.gentoo.org>; Mon, 9 May 2022 20:38:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D3E6485 for <gentoo-commits@lists.gentoo.org>; Mon, 9 May 2022 20:38:17 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1652128657.7132e6aaed305b544cb67925c63a375b29110821.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/filelock/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/filelock/filelock-3.6.0.ebuild X-VCS-Directories: dev-python/filelock/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7132e6aaed305b544cb67925c63a375b29110821 X-VCS-Branch: master Date: Mon, 9 May 2022 20:38:17 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7fbb6a51-6429-435a-b5ee-926f616b2df6 X-Archives-Hash: 3c77cdff9922bbdf7db05fc5a5f022e5 commit: 7132e6aaed305b544cb67925c63a375b29110821 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Mon May 9 19:50:07 2022 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon May 9 20:37:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7132e6aa dev-python/filelock: Enable py3.11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/filelock/filelock-3.6.0.ebuild | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/dev-python/filelock/filelock-3.6.0.ebuild b/dev-python/filelock/filelock-3.6.0.ebuild index 24b7a3982d3f..618da9440f4e 100644 --- a/dev-python/filelock/filelock-3.6.0.ebuild +++ b/dev-python/filelock/filelock-3.6.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) inherit distutils-r1 @@ -12,10 +12,12 @@ MY_P=py-filelock-${PV} DESCRIPTION="A platform independent file lock for Python" HOMEPAGE=" https://github.com/tox-dev/py-filelock/ - https://pypi.org/project/filelock/" + https://pypi.org/project/filelock/ +" SRC_URI=" https://github.com/tox-dev/py-filelock/archive/${PV}.tar.gz - -> ${MY_P}.tar.gz" + -> ${MY_P}.tar.gz +" S="${WORKDIR}/${MY_P}" LICENSE="Unlicense" @@ -23,7 +25,10 @@ SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" BDEPEND=" - test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )" + test? ( + dev-python/pytest-timeout[${PYTHON_USEDEP}] + ) +" distutils_enable_tests pytest