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 10CAC158093 for ; Sat, 18 Sep 2021 05:38:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C32EE05C1; Sat, 18 Sep 2021 05:38:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2FCFDE05C1 for ; Sat, 18 Sep 2021 05:38:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BF06834319D for ; Sat, 18 Sep 2021 05:38:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B0D48E for ; Sat, 18 Sep 2021 05:38:36 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1631943195.b17eaa973464a30e349fd997d0e929d1f4e044f7.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/txrequests/txrequests-0.9.6.ebuild X-VCS-Directories: dev-python/txrequests/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: b17eaa973464a30e349fd997d0e929d1f4e044f7 X-VCS-Branch: master Date: Sat, 18 Sep 2021 05:38:36 +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: b0c20194-9aa4-4df4-831d-03f145cc70b8 X-Archives-Hash: 57b5335909f0dd3e304918e52a2fea55 commit: b17eaa973464a30e349fd997d0e929d1f4e044f7 Author: Arthur Zamarin gentoo org> AuthorDate: Sat Sep 18 05:33:15 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Sep 18 05:33:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b17eaa97 dev-python/txrequests: enable tests, enable py3.10, EAPI=8 Closes: https://bugs.gentoo.org/798603 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/txrequests/txrequests-0.9.6.ebuild | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/dev-python/txrequests/txrequests-0.9.6.ebuild b/dev-python/txrequests/txrequests-0.9.6.ebuild index 7f6e3418d14..729977c9a88 100644 --- a/dev-python/txrequests/txrequests-0.9.6.ebuild +++ b/dev-python/txrequests/txrequests-0.9.6.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -PYTHON_COMPAT=( python3_{7,8,9}) +EAPI=8 -DISTUTILS_USE_SETUPTOOLS="bdepend" +PYTHON_COMPAT=( python3_{8..10}) inherit distutils-r1 @@ -15,9 +14,15 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" RDEPEND=" >=dev-python/requests-1.2.0[${PYTHON_USEDEP}] dev-python/twisted[${PYTHON_USEDEP}] " -DEPEND="${RDEPEND}" +BDEPEND="test? ( ${RDEPEND} )" + +python_test() { + "${EPYTHON}" -m twisted.trial txrequests || die "Tests failed with ${EPYTHON}" +}