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 218DD138353 for ; Fri, 1 May 2020 15:44:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 638B3E0AFE; Fri, 1 May 2020 15:44:33 +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 4FE1BE0AFE for ; Fri, 1 May 2020 15:44:33 +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 6598234F048 for ; Fri, 1 May 2020 15:44:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDC949C for ; Fri, 1 May 2020 15:44:29 +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: <1588347841.b6dcd687ef6f14dc85c0a6b34dd814d7943d96ff.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/statsd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/statsd/statsd-3.3.0.ebuild X-VCS-Directories: dev-python/statsd/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b6dcd687ef6f14dc85c0a6b34dd814d7943d96ff X-VCS-Branch: master Date: Fri, 1 May 2020 15:44:29 +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: 4d64af55-5574-4801-ab3b-02d91adf9c14 X-Archives-Hash: 46c559cffea4e35025c3a5d83b8628b8 commit: b6dcd687ef6f14dc85c0a6b34dd814d7943d96ff Author: Michał Górny gentoo org> AuthorDate: Fri May 1 14:50:51 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri May 1 15:44:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6dcd687 dev-python/statsd: Add missing test dep, py3.8, modernize Closes: https://bugs.gentoo.org/720096 Signed-off-by: Michał Górny gentoo.org> dev-python/statsd/statsd-3.3.0.ebuild | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/dev-python/statsd/statsd-3.3.0.ebuild b/dev-python/statsd/statsd-3.3.0.ebuild index f92fe942f38..cd01b37d821 100644 --- a/dev-python/statsd/statsd-3.3.0.ebuild +++ b/dev-python/statsd/statsd-3.3.0.ebuild @@ -2,28 +2,21 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7} pypy3 ) +PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) inherit distutils-r1 DESCRIPTION="A simple statsd client" HOMEPAGE="https://github.com/jsocol/pystatsd https://pypi.org/project/statsd" - SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" -RDEPEND="" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] +BDEPEND=" test? ( - dev-python/nose[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] )" -python_test() { - nosetests --verbose || die -} +distutils_enable_tests nose