public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/libtmux/
Date: Wed, 26 Feb 2025 06:03:22 +0000 (UTC)	[thread overview]
Message-ID: <1740549793.b52be83474afa076c3ea350407dc399522e2147b.mgorny@gentoo> (raw)

commit:     b52be83474afa076c3ea350407dc399522e2147b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 26 05:44:49 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 26 06:03:13 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b52be834

dev-python/libtmux: Bump to 0.46.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/libtmux/Manifest              |  1 +
 dev-python/libtmux/libtmux-0.46.0.ebuild | 53 ++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/libtmux/Manifest b/dev-python/libtmux/Manifest
index 33c5053b66d1..465b9e600b07 100644
--- a/dev-python/libtmux/Manifest
+++ b/dev-python/libtmux/Manifest
@@ -4,3 +4,4 @@ DIST libtmux-0.40.1.gh.tar.gz 318542 BLAKE2B 5b9e383a3c07bab3af7c25adcf5db1c6acf
 DIST libtmux-0.42.0.gh.tar.gz 318655 BLAKE2B 5d462bd78e81bd38cfb0c42a2100287fc79b9fe31aaeccbac5c9fd124afc2df9da4ceb5cd469de1919df2995c27d4c0628629004938795b6f8731e84c23ed2bc SHA512 38e7c21bd99859add1737a1028c18852a564a2d32c27b72ea37d623bcbc0646b095ad4dd520385c11d6df4c779429ac452f6ae592a6d0ffcb4fe64bf2a4388b3
 DIST libtmux-0.44.2.gh.tar.gz 326828 BLAKE2B ac2441ac13157bdce2465b1388f3e1570eb48193f26a37cfe6d68e56e93f659410af2851be20cd2f94011298c2b93a54eee20f5d07b4fbff15d26e00bbae6c0c SHA512 383784bb335c0f6e8200e20e8afd5b643658ee081a2c07cb9df2ee682d4b411b3ea17c7607587b8855f7d6571f5db7dd75318eefdd8946e6e38560309b5fa35f
 DIST libtmux-0.45.0.gh.tar.gz 329763 BLAKE2B 3c8184b9e7ab874b4a85e3d3c3be3e96e48bfb14a02bf26a683062374c0a5258d911026a8c994639514668c775ab3855201d1daa466a20041635aeb978cffe24 SHA512 e1f921bddabcc26f034c331d3b9e7082c3d6d4cdbd8f0173e1499d8a05fd80ca79317409b29cb9ac95827ccb6e9127c58dffa6198ea5a2dee547fdaef23ba2ee
+DIST libtmux-0.46.0.gh.tar.gz 337117 BLAKE2B 23caa10584c943ee1e7c162ce97d9d18d297a52fa15a4ac66be2e29314499d2f99bfa5a3061cef6ad80dc94ba8bf9362725d92e74385973aa717849a78388ac4 SHA512 4143639f0219c5751e69718d79c08efec8f9a6f5229aa48f6a7f7fe6c32486ee4b92f6d962fa6ef8f396852a688e373daf0d416f29b95036d015b3fcbba063a9

diff --git a/dev-python/libtmux/libtmux-0.46.0.ebuild b/dev-python/libtmux/libtmux-0.46.0.ebuild
new file mode 100644
index 000000000000..b86630b392a7
--- /dev/null
+++ b/dev-python/libtmux/libtmux-0.46.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Typed library that provides an ORM wrapper for tmux, a terminal multiplexer"
+HOMEPAGE="
+	https://libtmux.git-pull.com/
+	https://github.com/tmux-python/libtmux/
+	https://pypi.org/project/libtmux/
+"
+SRC_URI="
+	https://github.com/tmux-python/libtmux/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+RDEPEND="
+	>=app-misc/tmux-3.0a
+"
+BDEPEND="
+	test? (
+		dev-python/pytest-mock[${PYTHON_USEDEP}]
+		dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	local issues="https://github.com/tmux-python/libtmux/issues/"
+	sed -r -i "s|:issue:\`([[:digit:]]+)\`|\`issue \1 ${issues}\1\`|" CHANGES || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	# tests/test_window.py::test_fresh_window_data fails if TMUX_PANE is set
+	# https://bugs.gentoo.org/927158
+	local -x TMUX_PANE=
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	local -x PYTEST_PLUGINS=libtmux.pytest_plugin
+
+	epytest -o addopts= -p pytest_mock -p rerunfailures --reruns=5 tests
+}


             reply	other threads:[~2025-02-26  6:03 UTC|newest]

Thread overview: 92+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-26  6:03 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-27 20:59 [gentoo-commits] repo/gentoo:master commit in: dev-python/libtmux/ Michał Górny
2025-02-26  6:03 Michał Górny
2025-02-24  3:37 Michał Górny
2025-02-18  7:36 Michał Górny
2025-02-17 20:47 Michał Górny
2025-02-16  3:31 Michał Górny
2025-02-16  3:31 Michał Górny
2025-02-04  4:28 Michał Górny
2024-12-25  7:45 Michał Górny
2024-12-21  8:11 Michał Górny
2024-12-14 17:19 Arthur Zamarin
2024-11-27  5:47 Michał Górny
2024-11-27  5:47 Michał Górny
2024-11-27  5:47 Michał Górny
2024-06-15 19:15 Michał Górny
2024-05-27 18:33 Arthur Zamarin
2024-04-22  3:40 Michał Górny
2024-03-25  4:47 Michał Górny
2024-03-24 16:22 Michał Górny
2024-03-17 20:55 Patrick McLean
2024-03-17 17:13 Patrick McLean
2024-03-17 16:24 Michał Górny
2024-03-17 16:24 Michał Górny
2024-03-17 16:24 Michał Górny
2024-03-02  6:43 Michał Górny
2024-02-16 23:15 Patrick McLean
2024-02-16 21:52 Patrick McLean
2024-02-15  1:36 Patrick McLean
2024-02-15  1:36 Patrick McLean
2024-02-07 18:22 Patrick McLean
2024-02-07 18:22 Patrick McLean
2023-11-28  0:36 Patrick McLean
2023-11-28  0:36 Patrick McLean
2023-10-03  2:09 Sam James
2023-09-09 17:29 Arthur Zamarin
2023-08-21 16:39 Patrick McLean
2023-06-01 21:11 Patrick McLean
2023-04-10 21:05 Patrick McLean
2023-02-20 20:10 Arthur Zamarin
2023-01-30  7:15 Michał Górny
2023-01-26 18:37 Patrick McLean
2023-01-21 16:25 Michał Górny
2023-01-21 13:40 Arthur Zamarin
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 18:32 Patrick McLean
2022-12-02 15:23 Michał Górny
2022-11-08  4:54 Jakov Smolić
2022-11-05 20:35 Arthur Zamarin
2022-10-31 15:49 Michał Górny
2022-09-25  7:21 Arthur Zamarin
2022-09-20  5:37 Michał Górny
2022-09-20  0:07 Sam James
2022-09-18 18:18 Michał Górny
2022-09-06 21:12 Sam James
2022-08-17 18:28 Arthur Zamarin
2022-08-06 13:09 Arthur Zamarin
2022-08-05 18:50 Arthur Zamarin
2022-08-05 18:50 Arthur Zamarin
2022-08-01 11:07 Michał Górny
2022-05-24 18:50 Patrick McLean
2022-05-24 18:50 Patrick McLean
2022-03-15 14:14 Michał Górny
2022-03-15 11:52 Jakov Smolić
2022-01-29 19:42 Patrick McLean
2021-08-07 14:43 Sam James
2021-07-06  8:09 Michał Górny
2021-06-15 17:57 Patrick McLean
2020-12-19 21:57 Michał Górny
2020-12-19 19:36 Sam James
2020-12-16 11:51 Michał Górny
2020-11-08  3:31 Patrick McLean
2020-10-18 16:02 Thomas Deutschmann
2020-10-04 23:45 Sam James
2020-08-18  0:59 Patrick McLean
2020-07-31  3:47 Sam James
2020-07-30 19:39 Sam James
2020-07-29 18:18 Sam James
2020-04-30 23:18 Patrick McLean
2020-04-28 15:41 Mikle Kolyada
2020-04-28 13:12 Agostino Sarubbo
2020-04-28  2:21 Patrick McLean
2020-02-16 19:59 Patrick McLean
2020-02-13 18:05 Patrick McLean
2020-02-13 18:05 Patrick McLean
2020-02-05 16:24 Michał Górny
2019-09-11  0:58 Patrick McLean
2019-08-11 11:31 David Seifert
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=1740549793.b52be83474afa076c3ea350407dc399522e2147b.mgorny@gentoo \
    --to=mgorny@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