Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-admin/s-tui/
Date: Sat, 27 Feb 2021 21:23:58
Message-Id: 1614439773.612bcada5acc2349b940339c19ba4fc540a15ad9.andrewammerlaan@gentoo
1 commit: 612bcada5acc2349b940339c19ba4fc540a15ad9
2 Author: Maciej Barć <xgqt <AT> protonmail <DOT> com>
3 AuthorDate: Sat Feb 27 15:29:31 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Sat Feb 27 15:29:33 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=612bcada
7
8 app-admin/s-tui: bump to 1.1.1
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
11 Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>
12
13 app-admin/s-tui/Manifest | 1 +
14 app-admin/s-tui/s-tui-1.1.1.ebuild | 39 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/app-admin/s-tui/Manifest b/app-admin/s-tui/Manifest
18 index d3eef48d..2ad3395a 100644
19 --- a/app-admin/s-tui/Manifest
20 +++ b/app-admin/s-tui/Manifest
21 @@ -1 +1,2 @@
22 DIST s-tui-1.0.2.tar.gz 2607552 BLAKE2B 8ed54c44aeab0ccf5806e8fa1cb566b23d9f27f82a281882b36de85c4800515385c558da59b1ba8f039da15d08696865d5ac201c85c1b74316a7757fc2f02125 SHA512 7b475a4be69b702bd0a916e5c4fbec2dc9976e5033d6afb24af0583eba62292d5f7ab26779e1b55d8adaa113c32984a15311d050e9457d791778734b9236d530
23 +DIST s-tui-1.1.1.tar.gz 2608558 BLAKE2B df3211e948acae7ad6b93bdd770cd0aae695da39e4746231f0aed7904dc35b480982ada249ab3dbc387b18dbf40029f2d8db23d71d764a141abe814c5c8117e6 SHA512 71de8fbdad7ebcf9e0ef84b35276315b6c23782c1e24cec1cabb5397e768aa2d5c3f0d3945e1693625b06c52dc1c4ceb7290f6262bf6cddca7afecdcff059bae
24
25 diff --git a/app-admin/s-tui/s-tui-1.1.1.ebuild b/app-admin/s-tui/s-tui-1.1.1.ebuild
26 new file mode 100644
27 index 00000000..b218d46b
28 --- /dev/null
29 +++ b/app-admin/s-tui/s-tui-1.1.1.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7..9} )
37 +DISTUTILS_USE_SETUPTOOLS=rdepend
38 +
39 +inherit distutils-r1 optfeature
40 +
41 +DESCRIPTION="Stress-Terminal UI monitoring tool"
42 +HOMEPAGE="https://amanusk.github.io/s-tui/"
43 +
44 +if [[ ${PV} == *9999* ]]; then
45 + inherit git-r3
46 + EGIT_REPO_URI="https://github.com/amanusk/${PN}.git"
47 + EGIT_SUBMODULES=()
48 +else
49 + # Pypi source doesn't include tests
50 + SRC_URI="https://github.com/amanusk/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 + KEYWORDS="~amd64"
52 +fi
53 +
54 +LICENSE="GPL-2"
55 +SLOT="0"
56 +
57 +RDEPEND="
58 + >=dev-python/psutil-5.6.0[${PYTHON_USEDEP}]
59 + >=dev-python/urwid-2.0.1[${PYTHON_USEDEP}]
60 +"
61 +
62 +distutils_enable_tests unittest
63 +
64 +pkg_postinst() {
65 + elog "To get additional features, some optional runtime dependencies"
66 + elog "may be installed:"
67 + elog ""
68 + optfeature "Stress options in program menu" app-benchmarks/stress
69 +}