Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/hatop/
Date: Thu, 30 Jul 2020 18:17:19
Message-Id: 1596133011.2ec3a523cbcd8d8a41cd963a4da72d68fb10c1d3.whissi@gentoo
1 commit: 2ec3a523cbcd8d8a41cd963a4da72d68fb10c1d3
2 Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Thu Jul 30 12:55:22 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 18:16:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ec3a523
7
8 net-proxy/hatop: bump to 0.8.0 with py3 support
9
10 Closes: https://bugs.gentoo.org/645986
11 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/16901
13 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
14
15 net-proxy/hatop/Manifest | 1 +
16 net-proxy/hatop/hatop-0.8.0.ebuild | 32 ++++++++++++++++++++++++++++++++
17 2 files changed, 33 insertions(+)
18
19 diff --git a/net-proxy/hatop/Manifest b/net-proxy/hatop/Manifest
20 index 3e1a8c7e048..e61d05cd4f6 100644
21 --- a/net-proxy/hatop/Manifest
22 +++ b/net-proxy/hatop/Manifest
23 @@ -1 +1,2 @@
24 DIST hatop-0.7.7.tar.gz 134143 BLAKE2B 549290a67463a7c6ef58e1e0a45666dded7973e679183dee0be7aaa97491c5d0e36da98e2fc62e4097fa4811ad1e620078f32019abfd83472139c43b2805be47 SHA512 879de0e13af1d1c4e86be034066fb4bbc5c1700a30abebbfb1e1d524fb50cec0fa90fe160a7b7d00bf6aedd49ab7bb8fa1447f751fae95200e850ff506feb074
25 +DIST hatop-0.8.0.tar.gz 134737 BLAKE2B bc5b1f878dc3ff388c788b6f4a07d9a3076ca3c2c11de15ec6d1ad17d5b2295162568791e4dc9e3edf091a08c80662ceb4d5a6d276e69dd3c96132cb78d007ee SHA512 1776da58a12835434d7b8f59582bad44fb3bf9479f05fedb45f84bc73792b331dda63f989c8b202436801a30600283ec782380e16aa75abf7643ffa5da029718
26
27 diff --git a/net-proxy/hatop/hatop-0.8.0.ebuild b/net-proxy/hatop/hatop-0.8.0.ebuild
28 new file mode 100644
29 index 00000000000..2c3f9331958
30 --- /dev/null
31 +++ b/net-proxy/hatop/hatop-0.8.0.ebuild
32 @@ -0,0 +1,32 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{6..9} )
39 +PYTHON_REQ_USE="ncurses"
40 +
41 +inherit python-r1
42 +
43 +DESCRIPTION="Ncurses client and real-time monitoring and displaying of HAProxy status"
44 +HOMEPAGE="https://github.com/jhunt/hatop"
45 +SRC_URI="https://github.com/jhunt/hatop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="GPL-3"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE=""
51 +
52 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
53 +
54 +DEPEND="${PYTHON_DEPS}"
55 +RDEPEND="${DEPEND}
56 + net-proxy/haproxy"
57 +
58 +src_install() {
59 + python_foreach_impl python_doscript bin/hatop
60 +
61 + doman man/hatop.1
62 +
63 + dodoc CHANGES.rst KEYBINDS README.rst
64 +}