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 53E2913835A for ; Tue, 22 Jun 2021 21:29:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DB6EE082B; Tue, 22 Jun 2021 21:28:59 +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 F20F6E082B for ; Tue, 22 Jun 2021 21:28:58 +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 D255933BF21 for ; Tue, 22 Jun 2021 21:28:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6408A7A0 for ; Tue, 22 Jun 2021 21:28:56 +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: <1624397332.80c33339e6e051408089b7ad5c6894e6ad0aa027.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-testing/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx-testing/sphinx-testing-1.0.1-r1.ebuild X-VCS-Directories: dev-python/sphinx-testing/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 80c33339e6e051408089b7ad5c6894e6ad0aa027 X-VCS-Branch: master Date: Tue, 22 Jun 2021 21:28:56 +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: f47cc212-2ced-4da2-b6be-fa546fae0673 X-Archives-Hash: 014866de4f67f609a820eb48cc6627c6 commit: 80c33339e6e051408089b7ad5c6894e6ad0aa027 Author: Michał Górny gentoo org> AuthorDate: Tue Jun 22 21:27:29 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 22 21:28:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80c33339 dev-python/sphinx-testing: Enable py3.10 Signed-off-by: Michał Górny gentoo.org> .../sphinx-testing/sphinx-testing-1.0.1-r1.ebuild | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/dev-python/sphinx-testing/sphinx-testing-1.0.1-r1.ebuild b/dev-python/sphinx-testing/sphinx-testing-1.0.1-r1.ebuild index dfd06d45edc..e951c6617be 100644 --- a/dev-python/sphinx-testing/sphinx-testing-1.0.1-r1.ebuild +++ b/dev-python/sphinx-testing/sphinx-testing-1.0.1-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -13,20 +13,9 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" -RDEPEND="dev-python/six[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] dev-python/sphinx[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/nose[${PYTHON_USEDEP}] - )" - -python_test() { - # NB: while tests don't stricly use nose, they rely on some side - # effects of using it - nosetests -v || die "Tests fail with ${EPYTHON}" -} +distutils_enable_tests nose