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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7BBD215808B for ; Fri, 16 Feb 2024 23:48:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E29BE29D4; Fri, 16 Feb 2024 23:48:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50A67E29D4 for ; Fri, 16 Feb 2024 23:48:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37FA6340DE6 for ; Fri, 16 Feb 2024 23:48:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8065A11CF for ; Fri, 16 Feb 2024 23:48:15 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1708127270.22aeaab8b9724accdb43ea66fff1d48e25d08e2c.chutzpah@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.38.0-r1.ebuild app-misc/tmuxp/tmuxp-1.38.0.ebuild X-VCS-Directories: app-misc/tmuxp/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 22aeaab8b9724accdb43ea66fff1d48e25d08e2c X-VCS-Branch: master Date: Fri, 16 Feb 2024 23:48:15 +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: 50c220b3-a78e-4c80-b312-76522780eb17 X-Archives-Hash: 6675bec673530c7b194fbbb0dc03b540 commit: 22aeaab8b9724accdb43ea66fff1d48e25d08e2c Author: Patrick McLean gentoo org> AuthorDate: Fri Feb 16 23:47:50 2024 +0000 Commit: Patrick McLean gentoo org> CommitDate: Fri Feb 16 23:47:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22aeaab8 app-misc/tmuxp: Revbump, relax libtmux dep Signed-off-by: Patrick McLean gentoo.org> app-misc/tmuxp/{tmuxp-1.38.0.ebuild => tmuxp-1.38.0-r1.ebuild} | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app-misc/tmuxp/tmuxp-1.38.0.ebuild b/app-misc/tmuxp/tmuxp-1.38.0-r1.ebuild similarity index 84% rename from app-misc/tmuxp/tmuxp-1.38.0.ebuild rename to app-misc/tmuxp/tmuxp-1.38.0-r1.ebuild index cba7517555f5..728768efecb0 100644 --- a/app-misc/tmuxp/tmuxp-1.38.0.ebuild +++ b/app-misc/tmuxp/tmuxp-1.38.0-r1.ebuild @@ -17,7 +17,7 @@ KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" RDEPEND=" >=app-misc/tmux-3.0a - =dev-python/libtmux-0.30.1*[${PYTHON_USEDEP}] + =dev-python/libtmux-0.30*[${PYTHON_USEDEP}] >=dev-python/colorama-0.3.9[${PYTHON_USEDEP}] >=dev-python/pyyaml-6.0[${PYTHON_USEDEP}] " @@ -38,6 +38,13 @@ EPYTEST_DESELECT=( distutils_enable_tests pytest +python_prepare_all() { + sed -r -e 's:libtmux = "~[0-9.]+":libtmux = "~0.30":' \ + -i pyproject.toml || die + + distutils-r1_python_prepare_all +} + python_test() { SHELL="/bin/bash" epytest tests }