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 609B01382C5 for ; Sun, 31 May 2020 15:43:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 180B7E097D; Sun, 31 May 2020 15:42:39 +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 00FB3E097D for ; Sun, 31 May 2020 15:42:37 +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 D434834EBAD for ; Sun, 31 May 2020 15:42:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73F0131 for ; Sun, 31 May 2020 15:42:35 +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: <1590939739.a27c745801f4617dc4dd5913817eb80aebe5ae4a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pbr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pbr/pbr-5.4.5.ebuild X-VCS-Directories: dev-python/pbr/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a27c745801f4617dc4dd5913817eb80aebe5ae4a X-VCS-Branch: master Date: Sun, 31 May 2020 15:42:35 +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: 4710d5c8-659d-45a5-a69f-4174da92e762 X-Archives-Hash: 1c7dc2bf6c219f7c02dfb6f870008b82 commit: a27c745801f4617dc4dd5913817eb80aebe5ae4a Author: Michał Górny gentoo org> AuthorDate: Sun May 31 14:24:59 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 31 15:42:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a27c7458 dev-python/pbr: Port to py39 Signed-off-by: Michał Górny gentoo.org> dev-python/pbr/pbr-5.4.5.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/dev-python/pbr/pbr-5.4.5.ebuild b/dev-python/pbr/pbr-5.4.5.ebuild index 16bbd60f00a..ea2101a5a69 100644 --- a/dev-python/pbr/pbr-5.4.5.ebuild +++ b/dev-python/pbr/pbr-5.4.5.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{6..9} pypy3 ) PYTHON_REQ_USE="threads(+)" inherit distutils-r1 @@ -30,13 +30,14 @@ BDEPEND=" >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] >=dev-python/mock-2.0.0[${PYTHON_USEDEP}] >=dev-python/six-1.10.0[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] >=dev-python/testresources-2.0.0[${PYTHON_USEDEP}] >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] =dev-python/stestr-2.1.0 dev-vcs/git - ' -3) + ' python3_{6,7,8}) )" PDEPEND="" @@ -56,6 +57,12 @@ python_prepare_all() { } python_test() { + # TODO + if [[ ${EPYTHON} == python3.9 ]]; then + einfo "Skipping py3.9 due to unported sphinx" + return + fi + if ! python_is_python3; then ewarn "Skipping tests on ${EPYTHON} to unblock circular deps." ewarn "Please run tests manually."