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 E99CC1581A7 for ; Tue, 4 Jun 2024 12:26:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8299E2A35; Tue, 4 Jun 2024 12:26:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8EEC5E2A2F for ; Tue, 4 Jun 2024 12:26:30 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5D8A3406C2 for ; Tue, 4 Jun 2024 12:26:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A6AE1C63 for ; Tue, 4 Jun 2024 12:26:27 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1717453982.918baeec3d1a95d9f3608253ea88dca71e4345fc.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/proctl/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/proctl/metadata.xml app-misc/proctl/proctl-9999.ebuild X-VCS-Directories: app-misc/proctl/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 918baeec3d1a95d9f3608253ea88dca71e4345fc X-VCS-Branch: master Date: Tue, 4 Jun 2024 12:26:27 +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: fc3a2eef-4277-4710-bad4-97830f713941 X-Archives-Hash: d240563c0bcc680f07178e33c3457b1a commit: 918baeec3d1a95d9f3608253ea88dca71e4345fc Author: kernaltrap8 gmail com> AuthorDate: Mon Jun 3 22:33:02 2024 +0000 Commit: David Roman gmail com> CommitDate: Mon Jun 3 22:33:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=918baeec app-misc/proctl: new package, version 9999 Signed-off-by: kernaltrap8 gmail.com> app-misc/proctl/metadata.xml | 17 +++++++++++++++++ app-misc/proctl/proctl-9999.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/app-misc/proctl/metadata.xml b/app-misc/proctl/metadata.xml new file mode 100644 index 000000000..e4fcf5dba --- /dev/null +++ b/app-misc/proctl/metadata.xml @@ -0,0 +1,17 @@ + + + + + + kernaltrap@gmail.com + Primary maintainer + + + proctl is a C program that allows the controlling of other processes. + it can execute, kill, and restart processes my passing arguments to + the proctl command. + + + kernaltrap8/proctl + + diff --git a/app-misc/proctl/proctl-9999.ebuild b/app-misc/proctl/proctl-9999.ebuild new file mode 100644 index 000000000..a6a804a1e --- /dev/null +++ b/app-misc/proctl/proctl-9999.ebuild @@ -0,0 +1,24 @@ +EAPI=8 + +inherit meson + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/kernaltrap8/proctl" + S="${WORKDIR}/${PN}-9999" +fi + +DESCRIPTION="small C program that can control processes" +HOMEPAGE="https://github.com/kernaltrap8/proctl" + +LICENSE="GPL-3" +SLOT="0" + +DEPEND="${BDEPEND}" +BDEPEND=" + dev-build/meson +" + +src_configure() { + meson_src_configure +}