Gentoo Archives: gentoo-commits

From: Christian Ruppert <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/hatop/
Date: Fri, 05 Aug 2022 13:32:36
Message-Id: 1659706342.ae837648e967c9c23b2bf63116da6a5898a34a51.idl0r@gentoo
1 commit: ae837648e967c9c23b2bf63116da6a5898a34a51
2 Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 5 13:31:57 2022 +0000
4 Commit: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 5 13:32:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae837648
7
8 net-proxy/hatop: Bump to 0.8.2
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Christian Ruppert <idl0r <AT> gentoo.org>
12
13 net-proxy/hatop/Manifest | 1 +
14 net-proxy/hatop/hatop-0.8.2.ebuild | 31 +++++++++++++++++++++++++++++++
15 2 files changed, 32 insertions(+)
16
17 diff --git a/net-proxy/hatop/Manifest b/net-proxy/hatop/Manifest
18 index a9cfc9193b75..4805ecabf813 100644
19 --- a/net-proxy/hatop/Manifest
20 +++ b/net-proxy/hatop/Manifest
21 @@ -1 +1,2 @@
22 DIST hatop-0.8.1.tar.gz 136760 BLAKE2B 3692e9dd307d5f098bd3a66a3a75be5184e17d246dc94b3581d2742c9629d558dc4768baaef1c1e290825e57a651dccc926f22b4ecc98074cc8309fdda4b4b57 SHA512 25026ddd62ef43f02cfb3ef41a815adf232c8a4b3053e925dcea69696c207ffbf22966ce1177ef460071e683f5a4ec8d011d2bb2b0aa06f4a9b3e5932aae93b6
23 +DIST hatop-0.8.2.tar.gz 138013 BLAKE2B c4a86952bf892ad989c6a28aa4bec503b24cbd11ec78cc9fb89625e30f7b1d39c0f8929018df03e7c8906d1b478f31be1003b0c37be0d09916787e1825780a60 SHA512 5e772394d72962bdd014f93ee94ea59814cee33e17c1864af5b3ec97a19c2c33a6ad13f24d0cf0baf78335d9a82cee28b60a03754430b0aa9132c1dd92753cdb
24
25 diff --git a/net-proxy/hatop/hatop-0.8.2.ebuild b/net-proxy/hatop/hatop-0.8.2.ebuild
26 new file mode 100644
27 index 000000000000..15c530c52d75
28 --- /dev/null
29 +++ b/net-proxy/hatop/hatop-0.8.2.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7..10} )
37 +PYTHON_REQ_USE="ncurses"
38 +
39 +inherit python-r1
40 +
41 +DESCRIPTION="Ncurses client and real-time monitoring and displaying of HAProxy status"
42 +HOMEPAGE="https://github.com/jhunt/hatop"
43 +SRC_URI="https://github.com/jhunt/hatop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +
50 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
51 +
52 +DEPEND="${PYTHON_DEPS}"
53 +RDEPEND="${DEPEND}"
54 +
55 +src_install() {
56 + python_foreach_impl python_doscript bin/hatop
57 +
58 + doman man/hatop.1
59 +
60 + dodoc CHANGES.rst KEYBINDS README.rst
61 +}