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 18B5213835C for ; Tue, 11 May 2021 20:25:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D2B4E0872; Tue, 11 May 2021 20:25:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 44C94E0875 for ; Tue, 11 May 2021 20:25:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2E9D8340FB5 for ; Tue, 11 May 2021 20:25:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75B309CA for ; Tue, 11 May 2021 19:08:08 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1620760063.e4f93a025b2ad727a2684b086f7b848e5449f42f.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/torrentinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild X-VCS-Directories: net-p2p/torrentinfo/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: e4f93a025b2ad727a2684b086f7b848e5449f42f X-VCS-Branch: master Date: Tue, 11 May 2021 19:08:08 +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: 56fc0ffe-c2fe-4a8f-ae01-715d3c4c1679 X-Archives-Hash: b7822a9dbf59f0b763df225f5b6afcdc commit: e4f93a025b2ad727a2684b086f7b848e5449f42f Author: Louis Sautier gentoo org> AuthorDate: Tue May 11 19:03:47 2021 +0000 Commit: Louis Sautier gentoo org> CommitDate: Tue May 11 19:07:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4f93a02 net-p2p/torrentinfo: enable Python 3.10, simplify deps Signed-off-by: Louis Sautier gentoo.org> net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild b/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild index 3b5ca0b936e..e07d37d4948 100644 --- a/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild +++ b/net-p2p/torrentinfo/torrentinfo-1.8.6-r2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( pypy3 python3_{7,8,9} ) +PYTHON_COMPAT=( pypy3 python3_{7..10} ) # The package uses distutils DISTUTILS_USE_SETUPTOOLS=no @@ -15,13 +15,11 @@ SRC_URI="https://github.com/Fuuzetsu/torrentinfo/archive/v${PV}.tar.gz -> ${P}.t LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )" PATCHES=( "${FILESDIR}/${P}-fix-tests.patch" ) +distutils_enable_tests nose + # distutils_enable_tests nose doesn't work here, # probably because the test file has a non-standard name python_test() {