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 EB10113835A for ; Tue, 17 Nov 2020 17:43:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC581E09B0; Tue, 17 Nov 2020 17:43:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 99BB6E0993 for ; Tue, 17 Nov 2020 17:43:43 +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 F2832340E67 for ; Tue, 17 Nov 2020 17:43:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 718BE453 for ; Tue, 17 Nov 2020 17:43:40 +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: <1605635010.d36c1431aa9f4ce15848ea3d8ca5b772ea28d45a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/greenstalk/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/greenstalk/greenstalk-1.0.1.ebuild X-VCS-Directories: dev-python/greenstalk/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d36c1431aa9f4ce15848ea3d8ca5b772ea28d45a X-VCS-Branch: master Date: Tue, 17 Nov 2020 17:43:40 +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: 8adf19aa-6720-4b48-9080-c50c16a9df5f X-Archives-Hash: dc792f9ab546860440d11eb902351dda commit: d36c1431aa9f4ce15848ea3d8ca5b772ea28d45a Author: Michał Górny gentoo org> AuthorDate: Tue Nov 17 16:45:23 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 17 17:43:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36c1431 dev-python/greenstalk: Port up to py3.9 Signed-off-by: Michał Górny gentoo.org> dev-python/greenstalk/greenstalk-1.0.1.ebuild | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/dev-python/greenstalk/greenstalk-1.0.1.ebuild b/dev-python/greenstalk/greenstalk-1.0.1.ebuild index 8c32194fcab..411e09a24d6 100644 --- a/dev-python/greenstalk/greenstalk-1.0.1.ebuild +++ b/dev-python/greenstalk/greenstalk-1.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="A Python 3 client for the beanstalkd work queue" @@ -13,20 +13,15 @@ SRC_URI="https://github.com/mayhewj/greenstalk/archive/v${PV}.tar.gz -> ${P}.tar LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" -DEPEND=" +BDEPEND=" test? ( app-misc/beanstalkd - dev-python/pytest[${PYTHON_USEDEP}] ) " -RDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] -" +distutils_enable_tests pytest python_test() { - pytest -v tests.py || die + pytest -vv tests.py || die }