Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-process/iotop-c/
Date: Wed, 02 Sep 2020 13:08:51
Message-Id: 1599024425.c3ee1beae51f4054f991f24659ae8aff0f14e153.andrewammerlaan@gentoo
1 commit: c3ee1beae51f4054f991f24659ae8aff0f14e153
2 Author: Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
3 AuthorDate: Wed Sep 2 05:27:05 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Wed Sep 2 05:27:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c3ee1bea
7
8 sys-process/iotop-c: bump v1.10
9
10 - upstream fixed ncursesw linking
11 - upstream added man file
12
13 Package-Manager: Portage-3.0.4, Repoman-3.0.1
14 Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>
15
16 sys-process/iotop-c/Manifest | 1 +
17 sys-process/iotop-c/iotop-c-1.10.ebuild | 25 +++++++++++++++++++++++++
18 2 files changed, 26 insertions(+)
19
20 diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
21 index 0610756..bdf1b19 100644
22 --- a/sys-process/iotop-c/Manifest
23 +++ b/sys-process/iotop-c/Manifest
24 @@ -1,2 +1,3 @@
25 DIST iotop-c-0_pre20140824.tar.gz 16154 BLAKE2B ccd5a1d0901ce7d6c554f9b4a2102e7eab9f9bb456f7f2289b0c7b158c8f220339bc018aeb9295f89b717a711b69cb7f1c144d0c84dce093309e6897ac22a67d SHA512 3dac84abff82f1ec6c14a0dae14c11a2260ebe0a6ec112cda06ecfe2cf8535536c92f432fc03cc2baee6b7326eb4dda4fc2fe08a15c41a78641822daea5726d0
26 +DIST iotop-c-1.10.tar.gz 29813 BLAKE2B 20016f8f2d8866738b17624ac555fd51df12f157269b4c38ce900b99ba1cd42bdd1a5e2713b1ff7bc18f762f8e66c60095a2824a8cb18761d68731c87d003d6e SHA512 b548073f26133c2b06f1a3e946510d808331b95c12ab78f747acfa16f0bcde0202d3b01c756688c0e0c69aa18c8273e14509b10a49d19fb6fa1d7f5bdfc1cadd
27 DIST iotop-c-1.9.tar.gz 28680 BLAKE2B 7e30ca3cec2694afeb2bead7f97eb7ee0dcb3066cf4d1643771b04b724789b9b09836998f6f693bc0a3332b4bb06fb36c46c6ae9b37f0b8088c212136d5bd9f3 SHA512 99a1b9bcae13dbcead1e1c9df8618164be0f9c81e7220d2d4b1e0b8d1528b6a4f6845763a6c04a38510a4174bcaf21abb216f582f49729820cd579e0ca2856f9
28
29 diff --git a/sys-process/iotop-c/iotop-c-1.10.ebuild b/sys-process/iotop-c/iotop-c-1.10.ebuild
30 new file mode 100644
31 index 0000000..cee647f
32 --- /dev/null
33 +++ b/sys-process/iotop-c/iotop-c-1.10.ebuild
34 @@ -0,0 +1,25 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +DESCRIPTION="top utility for IO (C port)"
41 +HOMEPAGE="https://github.com/Tomas-M/iotop"
42 +SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +RDEPEND="sys-libs/ncurses:=
49 + !sys-process/iotop"
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="virtual/pkgconfig"
52 +
53 +S="${WORKDIR}/iotop-${PV}"
54 +
55 +src_install() {
56 + dobin iotop
57 + dodoc README.md
58 + doman iotop.8
59 +}