Gentoo Archives: gentoo-commits

From: Zamarin Arthur <arthurzam+gentoo@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-process/iotop-c/
Date: Tue, 09 Apr 2019 17:30:20
Message-Id: 1554830992.53c58a35ead80e4297535f96415e3fec8ca9cd16.arthurzam@gentoo
1 commit: 53c58a35ead80e4297535f96415e3fec8ca9cd16
2 Author: Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
3 AuthorDate: Tue Apr 9 17:29:52 2019 +0000
4 Commit: Zamarin Arthur <arthurzam+gentoo <AT> gmail <DOT> com>
5 CommitDate: Tue Apr 9 17:29:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=53c58a35
7
8 sys-process/iotop-c: top utility for IO (C port)
9
10 Port of sys-process/iotop which is written in Python to the C
11 language so it now runs without python at all. Last update was
12 on 2014-08-24, but works perfectly, therefore made a snapshot
13 package from the git repository.
14 Licensed under GPL-2.
15
16 Package-Manager: Portage-2.3.62, Repoman-2.3.12
17 Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>
18
19 sys-process/iotop-c/Manifest | 1 +
20 sys-process/iotop-c/iotop-c-2014.08.24.ebuild | 25 +++++++++++++++++++++++++
21 sys-process/iotop-c/metadata.xml | 14 ++++++++++++++
22 3 files changed, 40 insertions(+)
23
24 diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest
25 new file mode 100644
26 index 0000000..32f3f92
27 --- /dev/null
28 +++ b/sys-process/iotop-c/Manifest
29 @@ -0,0 +1 @@
30 +DIST iotop-c-2014.08.24.tar.gz 16154 BLAKE2B ccd5a1d0901ce7d6c554f9b4a2102e7eab9f9bb456f7f2289b0c7b158c8f220339bc018aeb9295f89b717a711b69cb7f1c144d0c84dce093309e6897ac22a67d SHA512 3dac84abff82f1ec6c14a0dae14c11a2260ebe0a6ec112cda06ecfe2cf8535536c92f432fc03cc2baee6b7326eb4dda4fc2fe08a15c41a78641822daea5726d0
31
32 diff --git a/sys-process/iotop-c/iotop-c-2014.08.24.ebuild b/sys-process/iotop-c/iotop-c-2014.08.24.ebuild
33 new file mode 100644
34 index 0000000..93c8daf
35 --- /dev/null
36 +++ b/sys-process/iotop-c/iotop-c-2014.08.24.ebuild
37 @@ -0,0 +1,25 @@
38 +# Copyright 1999-2019 Gentoo Authors
39 +# Distributed under the terms of the GNU General Public License v2
40 +
41 +EAPI=7
42 +
43 +MY_COMMIT="cadd9675822cc02eace137eb918a4362c69bec9e"
44 +
45 +DESCRIPTION="top utility for IO (C port)"
46 +HOMEPAGE="https://github.com/Tomas-M/iotop"
47 +SRC_URI="https://github.com/Tomas-M/iotop/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
48 +
49 +LICENSE="GPL-2"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +
53 +RDEPEND="sys-libs/ncurses:=
54 + !sys-process/iotop"
55 +DEPEND="${RDEPEND}"
56 +
57 +S="${WORKDIR}/iotop-${MY_COMMIT}"
58 +
59 +src_install() {
60 + dobin iotop
61 + dodoc README.md
62 +}
63
64 diff --git a/sys-process/iotop-c/metadata.xml b/sys-process/iotop-c/metadata.xml
65 new file mode 100644
66 index 0000000..efc3742
67 --- /dev/null
68 +++ b/sys-process/iotop-c/metadata.xml
69 @@ -0,0 +1,14 @@
70 +<?xml version="1.0" encoding="UTF-8"?>
71 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
72 +<pkgmetadata>
73 + <maintainer type="person">
74 + <email>arthurzam+gentoo@×××××.com</email>
75 + <name>Arthur Zamarin</name>
76 + </maintainer>
77 + <longdescription lang="en">
78 + top utility for IO (C port)
79 + </longdescription>
80 + <upstream>
81 + <remote-id type="github">Tomas-M/iotop</remote-id>
82 + </upstream>
83 +</pkgmetadata>