commit:     ee8dcceef5a78fb0366b18af171269aa666e338d
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 21 16:36:53 2023 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Mon Aug 21 16:39:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee8dccee

dev-python/libtmux: add 0.23.0

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

 dev-python/libtmux/Manifest              |  1 +
 dev-python/libtmux/libtmux-0.23.0.ebuild | 55 ++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-python/libtmux/Manifest b/dev-python/libtmux/Manifest
index d765ff15ae4f..3661ca7af87a 100644
--- a/dev-python/libtmux/Manifest
+++ b/dev-python/libtmux/Manifest
@@ -1,2 +1,3 @@
 DIST libtmux-0.21.0.gh.tar.gz 267484 BLAKE2B 
36d7af1bd90ff5a9639587d79f49643eec1e218d3b1839f5febdd9b6b402886e577b15c920cf458ecb14b4e6d532955b6d71ecf932060e6f8ba32193d6bb0162
 SHA512 
27000581396d79665e34b67a9e59bf639ca0fbd855ada9648750750e41e732cdcde15a05c6548993f08a8637783ddb478de24b75d5c18a198541c36b4b08b9cc
 DIST libtmux-0.22.1.gh.tar.gz 266173 BLAKE2B 
743d43fcebfb0058c9ff13f0fb9ad811403f85bf80dd68dbeead86fe079b4176db15c9bf0a8dd48fae67cb9fa968633595a51e6fcf6091bff54df911d2dd17bf
 SHA512 
f056ecbf793cd90bb60d50252c78eb67a8312eb3eda92d68ff69ed85270f23c9d4489789438fb9d228600320a2afb64a29a70c00a415604b65079167381c46d6
+DIST libtmux-0.23.0.gh.tar.gz 267917 BLAKE2B 
55b564ca517b346cdcb81b114cb62d3a10d94aad7be54b5172669a4c42f9d01d54c467ba32d818ec4851ae148bc0cadf174e47f5026a5025d015bc1e294802d9
 SHA512 
28b2b356e2f774085ffd03a1c63b1b7d6ece24765c54728a3e71fabe7b46b15f61a0a0263366bb67dfc440129c07cb6ff6f6dc6141b8d1f2e9fe96fc05b8b88a

diff --git a/dev-python/libtmux/libtmux-0.23.0.ebuild 
b/dev-python/libtmux/libtmux-0.23.0.ebuild
new file mode 100644
index 000000000000..f6219acb462a
--- /dev/null
+++ b/dev-python/libtmux/libtmux-0.23.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2023 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="Python API for tmux"
+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
+
+EPYTEST_DESELECT=(
+       libtmux/pane.py::libtmux.pane.Pane.send_keys
+)
+
+python_prepare_all() {
+       local issues="https://github.com/tmux-python/libtmux/issues/";
+       sed -r -i "s|:issue:\`([[:digit:]]+)\`|\`issue \1 ${issues}\1\`|" 
CHANGES || die
+       rm requirements/{doc,dev}.txt || die
+
+       # increase timeouts for tests
+       sed -e 's/0.01/0.1/' -i tests/test_test.py || die
+
+       sed -e '/addopts/s:--doctest-docutils-modules::' \
+               -e '/README\.md/d' \
+               -i setup.cfg || die
+
+       distutils-r1_python_prepare_all
+}

Reply via email to