commit: 0785cbcd6d08620c90881a31ce56656d80d9f966
Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 2 23:50:43 2025 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Dec 2 23:50:43 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0785cbcd
app-misc/tmuxp: add 1.59.0
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
app-misc/tmuxp/Manifest | 1 +
app-misc/tmuxp/tmuxp-1.59.0.ebuild | 54 ++++++++++++++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/app-misc/tmuxp/Manifest b/app-misc/tmuxp/Manifest
index d8e348551b18..0ed3913f04e9 100644
--- a/app-misc/tmuxp/Manifest
+++ b/app-misc/tmuxp/Manifest
@@ -2,3 +2,4 @@ DIST tmuxp-1.46.0.tar.gz 870062 BLAKE2B
b8c450e186097584e4f67de6375acd898b02826a
DIST tmuxp-1.54.0.tar.gz 912156 BLAKE2B
72a093d25fcd73d96db83afd608442394ad8bd7e47d9ea776a1e9cd4c78171128d850a81fa1dbd29bc7d700c6b43cad291a8a98f5afeb948ef482e66dc77410d
SHA512
a4dfdf4c7c860bfdb7d6897726eff2d20818ea55f4fe0ff3a7c899ea71185b95878b5cb8d17f078fc8477bddd9fcf5984ffc48c187c9532035baf0029557bbf7
DIST tmuxp-1.55.0.tar.gz 912159 BLAKE2B
4a2eced7a2fc88ac25e8818ddd3a9368182470ab6ef12d571b32b7bf8e2754bfc8456e35157a46f6b5ebd3e6daf04e555633fab61e113a00fc0b81a3af0d876a
SHA512
e9029e571637014cb053b20dfeee1624829c7c46e359f6aef3daba4d9342fe22b79700e30dc18522ef9344e926b7c9cd9893fa769f6f2ee6f74c43cdcb1a442b
DIST tmuxp-1.56.0.tar.gz 935483 BLAKE2B
b20a38a3e87c1e77368305f46e617ec4cebb6bd95c4e0d23a275edf22254bd265ce53e71e455a17f637101f64134cd852dfc8c4145efc385509899ff414c2da3
SHA512
a65800868b9b82a7d3cf498e7d9589aac96ccf47c50bc31f70ebb2ed15f855a64d910b1ed312dac5e360bcb960cb4f22817711bcb4c4e8d6f3b92bb6e8df1d8d
+DIST tmuxp-1.59.0.tar.gz 942266 BLAKE2B
8ed1db31dce46a47179b9823516621d32fd0ebbbca7f320072e70da211cdab1a021570a0a3695ecf0fffa6e7381bfd2dd444e6aad59a211593dae1c1c903aa26
SHA512
3743e89e2ec766b392ee213074cda50e2a4b2e724732658c67ee0d8c341097b0b9ba7d3edafce73696d6b8c345410330900e7ff0f9c96c3fce8932c40aa83df3
diff --git a/app-misc/tmuxp/tmuxp-1.59.0.ebuild
b/app-misc/tmuxp/tmuxp-1.59.0.ebuild
new file mode 100644
index 000000000000..770a69a82d92
--- /dev/null
+++ b/app-misc/tmuxp/tmuxp-1.59.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2019-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..14} )
+DISTUTILS_USE_PEP517=hatchling
+inherit distutils-r1
+
+DESCRIPTION="tmux session manager. built on libtmux"
+HOMEPAGE="https://tmuxp.git-pull.com"
+SRC_URI="https://github.com/tmux-python/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+RDEPEND="
+ >=app-misc/tmux-3.2
+ =dev-python/libtmux-0.50*[${PYTHON_USEDEP}]
+ >=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
+ >=dev-python/pyyaml-6.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ >=dev-python/pytest-6.2.5[${PYTHON_USEDEP}]
+ >=dev-python/pytest-mock-3.14.0[${PYTHON_USEDEP}]
+ >=dev-python/pytest-rerunfailures-4.2[${PYTHON_USEDEP}]
+ !!dev-python/flaky
+ )
+"
+
+EPYTEST_DESELECT=(
+ # test doesn't get along with sandbox
+ "tests/cli/test_load.py::test_load_zsh_autotitle_warning"
+)
+
+EPYTEST_IGNORE=(
+ # not actually tests, but throws off test collection
+ "tests/fixtures/"
+)
+
+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
+}