Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/iotop-c/
Date: Tue, 21 Sep 2021 09:38:35
Message-Id: 1632217098.e16723ebd669c84a2ceb84e268beea98b84d9b2b.arthurzam@gentoo
1 commit: e16723ebd669c84a2ceb84e268beea98b84d9b2b
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 21 09:38:18 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 21 09:38:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e16723eb
7
8 sys-process/iotop-c: add 1.19
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 sys-process/iotop-c/Manifest | 1 +
13 sys-process/iotop-c/iotop-c-1.19.ebuild | 36 +++++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
17 index 4c6717c0a8c..1eddfc18a3e 100644
18 --- a/sys-process/iotop-c/Manifest
19 +++ b/sys-process/iotop-c/Manifest
20 @@ -1 +1,2 @@
21 DIST iotop-c-1.18.tar.gz 114838 BLAKE2B 8b3e13d00de4a5cd385a2d441d84bb27cc1d03a27012163b9628285c31176698bf840951e39199abef11b2d3c0413d500d6e7699f32a3b542360a1333307d00e SHA512 f0affbfdb106eb36078e7994860155f52d47878017f47e64d69aa7c04cc29756ca516a6634fd19d6d39c931100b9a0e93e07ca2f4d14c18014dc1c4f477907ea
22 +DIST iotop-c-1.19.tar.gz 115025 BLAKE2B 0b45a73afc5dd160692fa1a3d028afff2b4b242a008470679a669182baa56b133f5fd26f9cb3ed20ebfe18b7fdeba9ca98a7801299c8c9b8d776a58fed2725d2 SHA512 489ddd67eb4e9159058c94f614534290b302abd5af8b424f6c42df20f21362c60dc30e7fd0bac883b8bf032e72843b4b82dbfb77b670258728ef0fa9dbb7dfa3
23
24 diff --git a/sys-process/iotop-c/iotop-c-1.19.ebuild b/sys-process/iotop-c/iotop-c-1.19.ebuild
25 new file mode 100644
26 index 00000000000..b6d52c5d05f
27 --- /dev/null
28 +++ b/sys-process/iotop-c/iotop-c-1.19.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit fcaps linux-info toolchain-funcs
36 +
37 +DESCRIPTION="top utility for IO (C port)"
38 +HOMEPAGE="https://github.com/Tomas-M/iotop"
39 +SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +S="${WORKDIR}/iotop-${PV}"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +RDEPEND="sys-libs/ncurses:=
47 + !sys-process/iotop"
48 +DEPEND="${RDEPEND}"
49 +BDEPEND="virtual/pkgconfig"
50 +
51 +CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS ~VM_EVENT_COUNTERS"
52 +
53 +FILECAPS=(
54 + cap_net_admin=eip usr/bin/iotop
55 +)
56 +
57 +src_compile() {
58 + emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
59 +}
60 +
61 +src_install() {
62 + dobin iotop
63 + dodoc README.md
64 + doman iotop.8
65 +}