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 953101580B9 for ; Wed, 25 Aug 2021 17:40:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5536E0878; Wed, 25 Aug 2021 17:40:44 +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 8B9D3E0878 for ; Wed, 25 Aug 2021 17:40:44 +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 21078342BF8 for ; Wed, 25 Aug 2021 17:40:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A66018BB for ; Wed, 25 Aug 2021 17:40:41 +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: <1629913233.0bbbbf4a443d59400c642ba0dbae55fbd196bff6.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/progressbar2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/progressbar2/progressbar2-3.53.1.ebuild X-VCS-Directories: dev-python/progressbar2/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 0bbbbf4a443d59400c642ba0dbae55fbd196bff6 X-VCS-Branch: master Date: Wed, 25 Aug 2021 17:40:41 +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: 3b421fa3-70e5-4d7e-a476-b37443c002bc X-Archives-Hash: fe4902c4c132474090cd569e5907733e commit: 0bbbbf4a443d59400c642ba0dbae55fbd196bff6 Author: Arthur Zamarin gentoo org> AuthorDate: Wed Aug 25 17:34:43 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Wed Aug 25 17:40:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bbbbf4a dev-python/progressbar2: enable py3.10, epytest, clean deps Signed-off-by: Arthur Zamarin gentoo.org> dev-python/progressbar2/progressbar2-3.53.1.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dev-python/progressbar2/progressbar2-3.53.1.ebuild b/dev-python/progressbar2/progressbar2-3.53.1.ebuild index dc065e44f01..8e572770470 100644 --- a/dev-python/progressbar2/progressbar2-3.53.1.ebuild +++ b/dev-python/progressbar2/progressbar2-3.53.1.ebuild @@ -2,22 +2,23 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9} pypy3) +PYTHON_COMPAT=( python3_{8..10} pypy3) inherit distutils-r1 DESCRIPTION="Text progressbar library for python" -HOMEPAGE="https://pypi.org/project/progressbar2/" +HOMEPAGE="https://progressbar-2.readthedocs.io/ https://pypi.org/project/progressbar2/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~x86" -CDEPEND="!dev-python/progressbar[${PYTHON_USEDEP}] - dev-python/python-utils[${PYTHON_USEDEP}]" -RDEPEND="${CDEPEND}" -BDEPEND="${CDEPEND} +RDEPEND=" + dev-python/python-utils[${PYTHON_USEDEP}] + !dev-python/progressbar +" +BDEPEND=" test? ( dev-python/freezegun[${PYTHON_USEDEP}] )" distutils_enable_tests pytest @@ -28,6 +29,5 @@ src_prepare() { } python_test() { - cd tests || die - PYTHONDONTWRITEBYTECODE=1 pytest -vv || die "Tests failed with ${EPYTHON}" + PYTHONDONTWRITEBYTECODE=1 epytest tests }