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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B23B5158089 for ; Fri, 15 Sep 2023 06:42:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F29702BC017; Fri, 15 Sep 2023 06:42:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB1402BC017 for ; Fri, 15 Sep 2023 06:42:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 25297335D16 for ; Fri, 15 Sep 2023 06:42:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9973D11AD for ; Fri, 15 Sep 2023 06:42:03 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1694759864.972b86e6670632d819a8c8de8a843c48e5a40445.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/pprocm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/pprocm/pprocm-1.0-r3.ebuild X-VCS-Directories: app-admin/pprocm/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 972b86e6670632d819a8c8de8a843c48e5a40445 X-VCS-Branch: master Date: Fri, 15 Sep 2023 06:42:03 +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: f305566a-36f6-4a86-be95-68f51afd133f X-Archives-Hash: d1238cc08b0e7f4d06d3c62b390ff338 commit: 972b86e6670632d819a8c8de8a843c48e5a40445 Author: Leonardo Hernández Hernández proton me> AuthorDate: Thu Sep 14 03:16:47 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Sep 15 06:37:44 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=972b86e6 app-admin/pprocm: update EAPI 6 -> 8 Signed-off-by: Leonardo Hernández Hernández proton.me> Signed-off-by: Arthur Zamarin gentoo.org> app-admin/pprocm/pprocm-1.0-r3.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/app-admin/pprocm/pprocm-1.0-r3.ebuild b/app-admin/pprocm/pprocm-1.0-r3.ebuild new file mode 100644 index 000000000000..89f614ee5a50 --- /dev/null +++ b/app-admin/pprocm/pprocm-1.0-r3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN="PProcM" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="ncurses-based program to monitor CPU, disk, network and memory usage" +HOMEPAGE="http://www.fusedcreations.com/PProcM/" +SRC_URI="http://www.fusedcreations.com/PProcM/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-lang/perl + dev-perl/IO-Pipely + dev-perl/POE + dev-perl/Sys-Statistics-Linux +" + +src_install() { + newbin "${MY_PN}" "${PN}" + einstalldocs +}