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: Thu, 19 May 2022 19:38:37
Message-Id: 1652989108.2044ed519519f25d337b6688b91e361e411f6386.idl0r@gentoo
1 commit: 2044ed519519f25d337b6688b91e361e411f6386
2 Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 19 19:38:22 2022 +0000
4 Commit: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
5 CommitDate: Thu May 19 19:38:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2044ed51
7
8 net-proxy/hatop: Python 3.10 support, bug 846173
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.0.ebuild | 31 -------------------------------
15 net-proxy/hatop/hatop-0.8.1.ebuild | 4 ++--
16 3 files changed, 2 insertions(+), 34 deletions(-)
17
18 diff --git a/net-proxy/hatop/Manifest b/net-proxy/hatop/Manifest
19 index f11c21b3b15e..a9cfc9193b75 100644
20 --- a/net-proxy/hatop/Manifest
21 +++ b/net-proxy/hatop/Manifest
22 @@ -1,2 +1 @@
23 -DIST hatop-0.8.0.tar.gz 134737 BLAKE2B bc5b1f878dc3ff388c788b6f4a07d9a3076ca3c2c11de15ec6d1ad17d5b2295162568791e4dc9e3edf091a08c80662ceb4d5a6d276e69dd3c96132cb78d007ee SHA512 1776da58a12835434d7b8f59582bad44fb3bf9479f05fedb45f84bc73792b331dda63f989c8b202436801a30600283ec782380e16aa75abf7643ffa5da029718
24 DIST hatop-0.8.1.tar.gz 136760 BLAKE2B 3692e9dd307d5f098bd3a66a3a75be5184e17d246dc94b3581d2742c9629d558dc4768baaef1c1e290825e57a651dccc926f22b4ecc98074cc8309fdda4b4b57 SHA512 25026ddd62ef43f02cfb3ef41a815adf232c8a4b3053e925dcea69696c207ffbf22966ce1177ef460071e683f5a4ec8d011d2bb2b0aa06f4a9b3e5932aae93b6
25
26 diff --git a/net-proxy/hatop/hatop-0.8.0.ebuild b/net-proxy/hatop/hatop-0.8.0.ebuild
27 deleted file mode 100644
28 index 2b54555e554b..000000000000
29 --- a/net-proxy/hatop/hatop-0.8.0.ebuild
30 +++ /dev/null
31 @@ -1,31 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python3_{7..9} )
38 -PYTHON_REQ_USE="ncurses"
39 -
40 -inherit python-r1
41 -
42 -DESCRIPTION="Ncurses client and real-time monitoring and displaying of HAProxy status"
43 -HOMEPAGE="https://github.com/jhunt/hatop"
44 -SRC_URI="https://github.com/jhunt/hatop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="GPL-3"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86"
49 -IUSE=""
50 -
51 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 -
53 -DEPEND="${PYTHON_DEPS}"
54 -RDEPEND="${DEPEND}"
55 -
56 -src_install() {
57 - python_foreach_impl python_doscript bin/hatop
58 -
59 - doman man/hatop.1
60 -
61 - dodoc CHANGES.rst KEYBINDS README.rst
62 -}
63
64 diff --git a/net-proxy/hatop/hatop-0.8.1.ebuild b/net-proxy/hatop/hatop-0.8.1.ebuild
65 index 9b40160d20ed..15c530c52d75 100644
66 --- a/net-proxy/hatop/hatop-0.8.1.ebuild
67 +++ b/net-proxy/hatop/hatop-0.8.1.ebuild
68 @@ -1,9 +1,9 @@
69 -# Copyright 1999-2021 Gentoo Authors
70 +# Copyright 1999-2022 Gentoo Authors
71 # Distributed under the terms of the GNU General Public License v2
72
73 EAPI=7
74
75 -PYTHON_COMPAT=( python3_{7..9} )
76 +PYTHON_COMPAT=( python3_{7..10} )
77 PYTHON_REQ_USE="ncurses"
78
79 inherit python-r1