commit: cdc2644f27070664f6b3f1f79ae083477ea5ad9d
Author: Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Tue May 13 17:26:08 2025 +0000
Commit: Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Tue May 13 17:26:08 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cdc2644f
app-admin/s-tui: add 1.2.0
Signed-off-by: Joe Kappus <joe <AT> wt.gd>
app-admin/s-tui/Manifest | 1 +
app-admin/s-tui/s-tui-1.2.0.ebuild | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/app-admin/s-tui/Manifest b/app-admin/s-tui/Manifest
index bb6e9a0e8..82b1a049c 100644
--- a/app-admin/s-tui/Manifest
+++ b/app-admin/s-tui/Manifest
@@ -1 +1,2 @@
DIST s-tui-1.1.6.gh.tar.gz 2608253 BLAKE2B
64815def105ad3c57f2103841ad09948ec6205bda09f4afca7dcca3bb9586c3e8d08aa0524d42f086f589f613bd79b389fca0f55182391bf20679b4d040eb087
SHA512
73412b55175ca2a5e98e410a3c9b5ce9aa1cffc13eb9af26e834d0ea784c06f6a9f81bb1be028b8cf94046ff0a8b20fff5b1191c949d49a72cecf3abd6a1fc38
+DIST s-tui-1.2.0.gh.tar.gz 2608975 BLAKE2B
a786386f2cce120d5d3cfeebe8a51442a3b3404eb405820fa09d98fd79ea0989ec78a8582c83357036a26904bee21edb21b7eee7f9deaf9565cb7b9f53b15076
SHA512
c6024ceaaed4e27f6210c106a1550a88376995efc925f92d6ffc4309e8981a1b3d0e59c502fd16ad1786fb61fc28de2dadee668f838057cc8dd4e54908859bda
diff --git a/app-admin/s-tui/s-tui-1.2.0.ebuild
b/app-admin/s-tui/s-tui-1.2.0.ebuild
new file mode 100644
index 000000000..2595dddbf
--- /dev/null
+++ b/app-admin/s-tui/s-tui-1.2.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..13} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Stress-Terminal UI monitoring tool"
+HOMEPAGE="https://amanusk.github.io/s-tui/"
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/amanusk/${PN}.git"
+ EGIT_SUBMODULES=()
+else
+ SRC_URI="https://github.com/amanusk/${PN}/archive/v${PV}.tar.gz ->
${P}.gh.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="
+ >=dev-python/psutil-7.0.0[${PYTHON_USEDEP}]
+ >=dev-python/urwid-3.0.2[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests unittest
+
+pkg_postinst() {
+ optfeature "Stress options in program menu" app-benchmarks/stress
+}