public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Patrick McLean" <chutzpah@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tmuxp/
Date: Thu, 18 Apr 2024 22:20:10 +0000 (UTC)	[thread overview]
Message-ID: <1713478775.2f740d1ace34c63e9f368fa0569335bbd2811a0e.chutzpah@gentoo> (raw)

commit:     2f740d1ace34c63e9f368fa0569335bbd2811a0e
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 22:19:35 2024 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 22:19:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f740d1a

app-misc/tmuxp: add 1.46.0

Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-misc/tmuxp/Manifest            |  1 +
 app-misc/tmuxp/tmuxp-1.46.0.ebuild | 51 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/app-misc/tmuxp/Manifest b/app-misc/tmuxp/Manifest
index 68dd06ad8fc2..44c4b6b6e069 100644
--- a/app-misc/tmuxp/Manifest
+++ b/app-misc/tmuxp/Manifest
@@ -5,3 +5,4 @@ DIST tmuxp-1.38.0.tar.gz 869977 BLAKE2B 6bbb44ceea34af68a7cac0acdf35ee19de74611c
 DIST tmuxp-1.40.0.tar.gz 870034 BLAKE2B ab2e6c08ea328e622713e355ff30e9781f2487b9a762ebd7c36195cd8522eee9eab70d66736a1f687e6336f317fdd556d8ee45e9921bd9b1b501189b540e92bb SHA512 6e8564ed2b57122772f1c7b73425b49b6d521141b8e4a3ff6b65d3fb57e6952dfdbb90941242d6d5d8fff70bf7a4533e60ec3dc0abae39637366f035aa237984
 DIST tmuxp-1.43.0.tar.gz 869217 BLAKE2B ebaa230723288a37334ee55c9b615610d66aacc5b01d6bf70576de38e9aa1ecc29a7d26299b55880e9ede403855304de080ddec6a16798a269d6bb8d4629498c SHA512 2dec0c941e919258fd884374fe89cf8e558483a50d53a4c6e3148f7639057aa365a959c062ea6929301dcd893b8a6794c002102f030d77fb904eeaa31ec30edd
 DIST tmuxp-1.45.0.tar.gz 869918 BLAKE2B e0f402ec8add4119e3d49b774e0dca0879a54f2f7d3b492979d7e46652ae07bba005c0a5d4784049d8a6c91c83ebf0346aac959ef730f35c63b8fba12459f680 SHA512 426d58c24330f184205a3f6ecbfc0e6871b8372ed882847272a336283f5e02f3461da0e01b0c47c8800a757486fd15f22b02f7175bdd128d5a7aab11a25080b7
+DIST tmuxp-1.46.0.tar.gz 870062 BLAKE2B b8c450e186097584e4f67de6375acd898b02826ad2a7c758cf0a502c7b60c5dad7ae537df8bcc18310ec6c20cd52700d5d87d336e23de4a786c607eb57ffe5f3 SHA512 1e2fa9b20ade766c7bcbec5b3b430c118cfa27b00e808241d0daf6720351d35863000f22ff052bf0f9f38a63e21813814591312ab0c5af14488a6546af5440ed

diff --git a/app-misc/tmuxp/tmuxp-1.46.0.ebuild b/app-misc/tmuxp/tmuxp-1.46.0.ebuild
new file mode 100644
index 000000000000..b77d79f89706
--- /dev/null
+++ b/app-misc/tmuxp/tmuxp-1.46.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..12} )
+DISTUTILS_USE_PEP517=poetry
+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.0a
+	=dev-python/libtmux-0.36*[${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}]
+		$(python_gen_cond_dep '>=dev-python/typing-extensions-4.0.1[${PYTHON_USEDEP}]' 3.{9..10})
+		>=dev-python/pytest-rerunfailures-4.2[${PYTHON_USEDEP}]
+		>=dev-python/tomli-1.1.0[${PYTHON_USEDEP}]
+		!dev-python/flaky
+	)
+"
+
+EPYTEST_DESELECT=(
+	# test doesn't get along with sandbox
+	"tests/cli/test_load.py::test_load_zsh_autotitle_warning"
+)
+
+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
+}


             reply	other threads:[~2024-04-18 22:20 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-18 22:20 Patrick McLean [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-11 22:57 [gentoo-commits] repo/gentoo:master commit in: app-misc/tmuxp/ Sam James
2024-08-11 22:57 Sam James
2024-08-11 22:14 Eli Schwartz
2024-08-11 22:13 Eli Schwartz
2024-08-11 22:13 Eli Schwartz
2024-04-18 22:20 Patrick McLean
2024-03-26 19:00 Patrick McLean
2024-03-17 20:55 Patrick McLean
2024-03-17 17:18 Patrick McLean
2024-03-04 20:56 Patrick McLean
2024-02-16 23:48 Patrick McLean
2024-02-16 21:52 Patrick McLean
2024-02-15  2:19 Patrick McLean
2024-02-07 18:22 Patrick McLean
2024-02-07 18:22 Patrick McLean
2023-11-28  0:36 Patrick McLean
2023-09-25 16:19 Patrick McLean
2023-09-11 21:51 Patrick McLean
2023-09-11 21:51 Patrick McLean
2023-08-21 17:51 Patrick McLean
2023-08-21 16:51 Patrick McLean
2023-08-21 16:39 Patrick McLean
2023-06-01 21:11 Patrick McLean
2023-04-10 21:05 Patrick McLean
2023-04-10 21:05 Patrick McLean
2023-03-16 22:19 Sam James
2023-03-16 22:02 Sam James
2023-02-02  1:48 Patrick McLean
2023-02-02  1:48 Patrick McLean
2023-01-26 18:37 Patrick McLean
2023-01-08 20:05 Patrick McLean
2023-01-08 20:05 Patrick McLean
2023-01-08 20:05 Patrick McLean
2023-01-05  7:14 Patrick McLean
2022-12-13 19:46 Patrick McLean
2022-12-02  6:26 Arthur Zamarin
2022-11-07 18:53 Patrick McLean
2022-10-31 18:34 Patrick McLean
2022-10-31 18:07 Patrick McLean
2022-09-26 18:43 Patrick McLean
2022-09-18 16:36 Sam James
2022-09-18 16:36 Sam James
2022-08-16 16:50 Patrick McLean
2022-08-08 19:28 Patrick McLean
2022-08-01 19:27 Patrick McLean
2022-05-24 19:44 Georgy Yakovlev
2022-05-24 19:01 Patrick McLean
2022-05-24 19:01 Patrick McLean
2022-05-24 18:50 Patrick McLean
2021-08-01  7:36 Sam James
2021-06-15 21:05 Patrick McLean
2021-06-15 17:57 Patrick McLean
2021-06-01 11:58 Sam James
2021-05-23 10:11 Michał Górny
2021-02-04  3:15 Patrick McLean
2021-02-04  3:15 Patrick McLean
2020-11-08 22:39 Patrick McLean
2020-11-08  3:31 Patrick McLean
2020-10-14 18:37 Patrick McLean
2020-07-31  3:47 Sam James
2020-07-29 18:18 Sam James
2020-07-27 23:07 Patrick McLean
2020-04-28 15:41 Mikle Kolyada
2020-04-28 13:12 Agostino Sarubbo
2020-02-16 19:32 Patrick McLean
2020-02-13 18:05 Patrick McLean
2020-02-13 18:05 Patrick McLean
2019-12-03  4:33 Patrick McLean
2019-09-11  0:58 Patrick McLean
2019-05-10 17:57 Patrick McLean

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1713478775.2f740d1ace34c63e9f368fa0569335bbd2811a0e.chutzpah@gentoo \
    --to=chutzpah@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox