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 0C9431382C5 for ; Mon, 22 Feb 2021 22:20:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57463E0844; Mon, 22 Feb 2021 22:20:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 5E236E0844 for ; Mon, 22 Feb 2021 22:20:14 +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 6D8FF340FE4 for ; Mon, 22 Feb 2021 22:20:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88E65583 for ; Mon, 22 Feb 2021 22:20:09 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1614032378.1424bf2ff05142f7896ee8d49d78538341899f76.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslotest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/oslotest/oslotest-4.4.1.ebuild X-VCS-Directories: dev-python/oslotest/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1424bf2ff05142f7896ee8d49d78538341899f76 X-VCS-Branch: master Date: Mon, 22 Feb 2021 22:20:09 +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: 9dfda59f-52f8-41ad-af7e-047c33aa8e5d X-Archives-Hash: d51083e4125834f6ec25ec210a16aac7 commit: 1424bf2ff05142f7896ee8d49d78538341899f76 Author: Jakov Smolic sartura hr> AuthorDate: Mon Feb 22 20:45:03 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 22 22:19:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1424bf2f dev-python/oslotest: Port to python 3.{8,9} Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Sam James gentoo.org> dev-python/oslotest/oslotest-4.4.1.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-python/oslotest/oslotest-4.4.1.ebuild b/dev-python/oslotest/oslotest-4.4.1.ebuild index 481fd0b98eb..7757b1705f2 100644 --- a/dev-python/oslotest/oslotest-4.4.1.ebuild +++ b/dev-python/oslotest/oslotest-4.4.1.ebuild @@ -2,9 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) -DISTUTILS_USE_SETUPTOOLS=bdepend +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 DESCRIPTION="Oslo test framework" @@ -15,10 +14,9 @@ LICENSE="Apache-2.0" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" -DEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" +BDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" RDEPEND=" >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}] >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] -" + >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]"