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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0912813835B for ; Sun, 9 May 2021 11:35:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7567FE076B; Sun, 9 May 2021 11:35:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53131E0729 for ; Sun, 9 May 2021 11:35:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5A110340FA3 for ; Sun, 9 May 2021 11:35:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2369778 for ; Sun, 9 May 2021 11:35:24 +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: <1620560116.ebe08273ebbf71cdc25249ef735e8d2baf24e69c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/whisper/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/whisper/whisper-1.1.7.ebuild X-VCS-Directories: dev-python/whisper/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ebe08273ebbf71cdc25249ef735e8d2baf24e69c X-VCS-Branch: master Date: Sun, 9 May 2021 11:35:24 +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: c9ee5cd3-db71-4b61-9bfe-c4e42ad7ada9 X-Archives-Hash: 1bbd0afcdece859592fc07e1f9bdda8b commit: ebe08273ebbf71cdc25249ef735e8d2baf24e69c Author: Jakov Smolic sartura hr> AuthorDate: Sat May 8 12:43:25 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 9 11:35:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebe08273 dev-python/whisper: Port to python3.10 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Michał Górny gentoo.org> dev-python/whisper/whisper-1.1.7.ebuild | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/dev-python/whisper/whisper-1.1.7.ebuild b/dev-python/whisper/whisper-1.1.7.ebuild index ad3271e64c2..0b3dd86386f 100644 --- a/dev-python/whisper/whisper-1.1.7.ebuild +++ b/dev-python/whisper/whisper-1.1.7.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( pypy3 python3_{7,8,9} ) +PYTHON_COMPAT=( pypy3 python3_{7..10} ) inherit distutils-r1 DESCRIPTION="Fixed size round-robin style database" @@ -15,19 +15,7 @@ SRC_URI="https://github.com/graphite-project/${PN}/archive/${PV}.tar.gz -> ${P}. LICENSE="Apache-2.0" KEYWORDS="~amd64 ~x86" SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND="dev-python/six[${PYTHON_USEDEP}]" -DEPEND=" - test? ( - ${RDEPEND} - dev-python/pytest[${PYTHON_USEDEP}] - ) -" distutils_enable_tests pytest - -#python_test() { -# py.test || die "tests failed with ${EPYTHON}" -#}