From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 76A86138334 for ; Tue, 9 Apr 2019 17:30:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 579A9E088D; Tue, 9 Apr 2019 17:30:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 13E7AE088D for ; Tue, 9 Apr 2019 17:30:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78E23335D07 for ; Tue, 9 Apr 2019 17:30:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C128955B for ; Tue, 9 Apr 2019 17:30:13 +0000 (UTC) From: "Zamarin Arthur" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zamarin Arthur" Message-ID: <1554830992.53c58a35ead80e4297535f96415e3fec8ca9cd16.arthurzam@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-process/iotop-c/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-process/iotop-c/Manifest sys-process/iotop-c/iotop-c-2014.08.24.ebuild sys-process/iotop-c/metadata.xml X-VCS-Directories: sys-process/iotop-c/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Zamarin Arthur X-VCS-Revision: 53c58a35ead80e4297535f96415e3fec8ca9cd16 X-VCS-Branch: dev Date: Tue, 9 Apr 2019 17:30:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 909ace25-32a7-443d-be37-7aa0dbbb9e1e X-Archives-Hash: 7898063da10f1d23182661c9f19d0381 commit: 53c58a35ead80e4297535f96415e3fec8ca9cd16 Author: Zamarin Arthur gmail com> AuthorDate: Tue Apr 9 17:29:52 2019 +0000 Commit: Zamarin Arthur gmail com> CommitDate: Tue Apr 9 17:29:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=53c58a35 sys-process/iotop-c: top utility for IO (C port) Port of sys-process/iotop which is written in Python to the C language so it now runs without python at all. Last update was on 2014-08-24, but works perfectly, therefore made a snapshot package from the git repository. Licensed under GPL-2. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Zamarin Arthur gmail.com> sys-process/iotop-c/Manifest | 1 + sys-process/iotop-c/iotop-c-2014.08.24.ebuild | 25 +++++++++++++++++++++++++ sys-process/iotop-c/metadata.xml | 14 ++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/sys-process/iotop-c/Manifest b/sys-process/iotop-c/Manifest new file mode 100644 index 0000000..32f3f92 --- /dev/null +++ b/sys-process/iotop-c/Manifest @@ -0,0 +1 @@ +DIST iotop-c-2014.08.24.tar.gz 16154 BLAKE2B ccd5a1d0901ce7d6c554f9b4a2102e7eab9f9bb456f7f2289b0c7b158c8f220339bc018aeb9295f89b717a711b69cb7f1c144d0c84dce093309e6897ac22a67d SHA512 3dac84abff82f1ec6c14a0dae14c11a2260ebe0a6ec112cda06ecfe2cf8535536c92f432fc03cc2baee6b7326eb4dda4fc2fe08a15c41a78641822daea5726d0 diff --git a/sys-process/iotop-c/iotop-c-2014.08.24.ebuild b/sys-process/iotop-c/iotop-c-2014.08.24.ebuild new file mode 100644 index 0000000..93c8daf --- /dev/null +++ b/sys-process/iotop-c/iotop-c-2014.08.24.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_COMMIT="cadd9675822cc02eace137eb918a4362c69bec9e" + +DESCRIPTION="top utility for IO (C port)" +HOMEPAGE="https://github.com/Tomas-M/iotop" +SRC_URI="https://github.com/Tomas-M/iotop/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="sys-libs/ncurses:= + !sys-process/iotop" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/iotop-${MY_COMMIT}" + +src_install() { + dobin iotop + dodoc README.md +} diff --git a/sys-process/iotop-c/metadata.xml b/sys-process/iotop-c/metadata.xml new file mode 100644 index 0000000..efc3742 --- /dev/null +++ b/sys-process/iotop-c/metadata.xml @@ -0,0 +1,14 @@ + + + + + arthurzam+gentoo@gmail.com + Arthur Zamarin + + + top utility for IO (C port) + + + Tomas-M/iotop + +