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: dev-python/libtmux/
Date: Fri, 16 Feb 2024 23:15:08 +0000 (UTC)	[thread overview]
Message-ID: <1708125303.927dab586439dbaa3d7b8fc0f61d9ee1ddf77fd0.chutzpah@gentoo> (raw)

commit:     927dab586439dbaa3d7b8fc0f61d9ee1ddf77fd0
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 16 23:14:54 2024 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Fri Feb 16 23:15:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=927dab58

dev-python/libtmux: add 0.30.2

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

 dev-python/libtmux/Manifest              |  1 +
 dev-python/libtmux/libtmux-0.30.2.ebuild | 57 ++++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/dev-python/libtmux/Manifest b/dev-python/libtmux/Manifest
index ba80d8c60e1f..f975cbdf3095 100644
--- a/dev-python/libtmux/Manifest
+++ b/dev-python/libtmux/Manifest
@@ -2,3 +2,4 @@ DIST libtmux-0.21.0.gh.tar.gz 267484 BLAKE2B 36d7af1bd90ff5a9639587d79f49643eec1
 DIST libtmux-0.27.0.gh.tar.gz 270128 BLAKE2B 330335e24ff5f1777d3a4ebd4746adcc391919a129c08c1bfe80d7ef61e962dc550690a68055390c58e8e6c539edcac74def8646d4b1055503496ac38f72fc0d SHA512 fd847524bf6b0742bac4eca2c1032e069be09081e9107a6403eebfce0f6ca4e624f717aae0794ece54065d50cc1eb6ef48327ef1e9aea794328c42a5d7bbb293
 DIST libtmux-0.28.0.gh.tar.gz 273309 BLAKE2B 9bc5b3068e64f09af0411f68f22cd23535b084175970338c827783741c8abde03548996cd573c6b58ce49298582f8e159dcab569fb6d19560229187a8da269b1 SHA512 8a6457c82cb06c72c0382c362e5d84d0a5498a01e8806adffd7e8c3a67c1b741fbd11892a3cca2156f940a954684e2d6f85ee7ad14f582f5727b977d433dd707
 DIST libtmux-0.30.1.gh.tar.gz 276505 BLAKE2B 508e9b15183ecf7c3c006145fbbc9580e7180fd39b453b8a9589f644f8fddcf14144e9989c92a581c7c10a95660d9c5b9f7f5544e51e202634407c0a1914c6a2 SHA512 9ec06901f978a631b9d8085806b71912f5b582d20e917ed4409f870ec2e873095044779b1d0db2cbe0285e11a043c44cd801fa60cb2f57d9d31fb95e3015daf8
+DIST libtmux-0.30.2.gh.tar.gz 276498 BLAKE2B 13d7940d7f0f2f71819c2a5747f73fb5f0319179ec57a974461552f3de5804bc30d35c8790d8ae63bb9797b3b1aea54ab94e1f593a37cbac286b297d70d33ed0 SHA512 503dd5e7325073cc57ab9a553c3b3cf7c7cd12a506a8a59dcfd84c5902f0a1b2adab507c5b95e9abc97c9384d282bb866d8772c93b23b101d0ec8ded8f2a280d

diff --git a/dev-python/libtmux/libtmux-0.30.2.ebuild b/dev-python/libtmux/libtmux-0.30.2.ebuild
new file mode 100644
index 000000000000..3347c96865a2
--- /dev/null
+++ b/dev-python/libtmux/libtmux-0.30.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{9..12} 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-rerunfailures[${PYTHON_USEDEP}]
+		dev-python/pytest-mock[${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
+
+	# increase timeouts for tests
+	sed -e 's/0.01/0.1/' -i tests/test_test.py || die
+
+	sed -r -e '/addopts/s:--doctest-docutils-modules::' \
+		-e '/^[[:space:]]+"README\.md"/d' \
+		-i pyproject.toml || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	local -a EPYTEST_DESELECT=(
+		libtmux/pane.py::libtmux.pane.Pane.send_keys
+	)
+	epytest
+}


             reply	other threads:[~2024-02-16 23:15 UTC|newest]

Thread overview: 98+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-16 23:15 Patrick McLean [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-13  6:19 [gentoo-commits] repo/gentoo:master commit in: dev-python/libtmux/ Arthur Zamarin
2025-06-06 15:37 Arthur Zamarin
2025-05-27  3:24 Michał Górny
2025-03-20 20:08 Arthur Zamarin
2025-03-20 20:08 Arthur Zamarin
2025-03-17  7:31 Michał Górny
2025-02-27 20:59 Michał Górny
2025-02-26  6:03 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 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=1708125303.927dab586439dbaa3d7b8fc0f61d9ee1ddf77fd0.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