public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: sys-process/pipectl/
@ 2024-07-26 21:12 David Roman
  0 siblings, 0 replies; 2+ messages in thread
From: David Roman @ 2024-07-26 21:12 UTC (permalink / raw
  To: gentoo-commits

commit:     2f7a18df29c0082bfef1b745a51b92e1f02e308e
Author:     Mazunki Hoksaas <rolferen <AT> gmail <DOT> com>
AuthorDate: Fri Jul 26 21:07:59 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Jul 26 21:09:39 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2f7a18df

sys-process/pipectl: new package, add 0.5.0

Signed-off-by: Mazunki Hoksaas <rolferen <AT> gmail.com>

 sys-process/pipectl/Manifest             |  1 +
 sys-process/pipectl/metadata.xml         | 11 +++++++++++
 sys-process/pipectl/pipectl-0.5.0.ebuild | 33 ++++++++++++++++++++++++++++++++
 3 files changed, 45 insertions(+)

diff --git a/sys-process/pipectl/Manifest b/sys-process/pipectl/Manifest
new file mode 100644
index 000000000..1f58a26a8
--- /dev/null
+++ b/sys-process/pipectl/Manifest
@@ -0,0 +1 @@
+DIST pipectl-0.5.0.tar.gz 18417 BLAKE2B 751e33df920aca92c1d4831c836d16625d9980351416ce32ab2571b0366562ad3194a75f42753008f2cf74fab5d860a4e4b38abffa8e87b6cf4ffd3e0b6210b8 SHA512 84caad4bee1cf831b631a9e1ccbf648c98f3e3cc5e2e0bee9fad5046804172de29e54406eb9e56d3741890a1273bf8f6e1520ca0a7a7ad7183c30ab5bd90e21d

diff --git a/sys-process/pipectl/metadata.xml b/sys-process/pipectl/metadata.xml
new file mode 100644
index 000000000..711aadf3e
--- /dev/null
+++ b/sys-process/pipectl/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>rolferen@gmail.com</email>
+		<name>Mazunki Hoksaas</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">Ferdi265/pipectl</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/sys-process/pipectl/pipectl-0.5.0.ebuild b/sys-process/pipectl/pipectl-0.5.0.ebuild
new file mode 100644
index 000000000..330ad1f94
--- /dev/null
+++ b/sys-process/pipectl/pipectl-0.5.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="a simple named pipe management utility"
+HOMEPAGE="https://github.com/Ferdi265/pipectl"
+SRC_URI="https://github.com/Ferdi265/pipectl/releases/download/v${PV}/pipectl-${PV}.tar.gz"
+
+LICENSE="GPL-3.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="man"
+
+DEPEND="
+	man? (
+		app-text/scdoc
+	)
+"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_configure() {
+	mycmakeargs=(
+		-DBUILD_DOCUMENTATION=$(usex man)
+		-DINSTALL_DOCUMENTATION=$(usex man)
+	)
+
+	cmake_src_configure
+}
+


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: sys-process/pipectl/
@ 2024-08-01 13:51 Lucio Sauer
  0 siblings, 0 replies; 2+ messages in thread
From: Lucio Sauer @ 2024-08-01 13:51 UTC (permalink / raw
  To: gentoo-commits

commit:     3766bf40b2c085baac820d4f1de5fbde2b1e1534
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Thu Aug  1 11:54:28 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Thu Aug  1 11:54:34 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3766bf40

sys-process/pipectl: update LICENSE

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 sys-process/pipectl/pipectl-0.5.0.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-process/pipectl/pipectl-0.5.0.ebuild b/sys-process/pipectl/pipectl-0.5.0.ebuild
index 330ad1f94..f03364644 100644
--- a/sys-process/pipectl/pipectl-0.5.0.ebuild
+++ b/sys-process/pipectl/pipectl-0.5.0.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="a simple named pipe management utility"
 HOMEPAGE="https://github.com/Ferdi265/pipectl"
 SRC_URI="https://github.com/Ferdi265/pipectl/releases/download/v${PV}/pipectl-${PV}.tar.gz"
 
-LICENSE="GPL-3.0"
+LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="man"
@@ -20,7 +20,6 @@ DEPEND="
 	)
 "
 RDEPEND="${DEPEND}"
-BDEPEND=""
 
 src_configure() {
 	mycmakeargs=(
@@ -30,4 +29,3 @@ src_configure() {
 
 	cmake_src_configure
 }
-


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-08-01 13:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-26 21:12 [gentoo-commits] repo/proj/guru:master commit in: sys-process/pipectl/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2024-08-01 13:51 Lucio Sauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox