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 79F2713835B for ; Sun, 23 May 2021 10:11:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8628E088B; Sun, 23 May 2021 10:11:02 +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 927BEE088B for ; Sun, 23 May 2021 10:11:02 +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 69C34340C76 for ; Sun, 23 May 2021 10:11:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04C0B790 for ; Sun, 23 May 2021 10:11:00 +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: <1621764656.7884d88e7a26bd93bc07af7cab4fd2de132ca5d7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tmuxp/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/tmuxp/tmuxp-1.7.2-r1.ebuild X-VCS-Directories: app-misc/tmuxp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7884d88e7a26bd93bc07af7cab4fd2de132ca5d7 X-VCS-Branch: master Date: Sun, 23 May 2021 10:11:00 +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: 67400086-de99-45bb-af0c-5d99b261566e X-Archives-Hash: 0f758006fbb8dfc74ed361e229e980ea commit: 7884d88e7a26bd93bc07af7cab4fd2de132ca5d7 Author: Michał Górny gentoo org> AuthorDate: Sun May 23 09:56:18 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 23 10:10:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7884d88e app-misc/tmuxp: Enable py3.9 Signed-off-by: Michał Górny gentoo.org> app-misc/tmuxp/tmuxp-1.7.2-r1.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/app-misc/tmuxp/tmuxp-1.7.2-r1.ebuild b/app-misc/tmuxp/tmuxp-1.7.2-r1.ebuild index 25dcf9b50b9..d18a7db8237 100644 --- a/app-misc/tmuxp/tmuxp-1.7.2-r1.ebuild +++ b/app-misc/tmuxp/tmuxp-1.7.2-r1.ebuild @@ -3,8 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..8} pypy3 ) -DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{7..9} pypy3 ) inherit distutils-r1 DESCRIPTION="tmux session manager. built on libtmux" @@ -14,7 +13,6 @@ SRC_URI="https://github.com/tmux-python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar. LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" -IUSE="test" RDEPEND=" >=app-misc/tmux-3.0a @@ -24,9 +22,8 @@ RDEPEND=" >=dev-python/click-7.0[${PYTHON_USEDEP}] >=dev-python/colorama-0.3.9[${PYTHON_USEDEP}] " -BDEPEND="${RDEPEND} +BDEPEND=" test? ( - >=dev-python/pytest-4.1.1[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] >=dev-python/pytest-rerunfailures-4.2[${PYTHON_USEDEP}] !dev-python/flaky @@ -39,8 +36,8 @@ PATCHES=( "${FILESDIR}/tmuxp-1.7.2-relax-click-dep.patch" ) -distutils_enable_tests --install pytest +distutils_enable_tests pytest python_test() { - SHELL="/bin/bash" pytest -vv || die "Tests fail with ${EPYTHON}" + SHELL="/bin/bash" epytest }