git: 873bf4fd31b1 - main - sysutils/pipeform: Add new port

From: Jimmy Olgeni <olgeni_at_FreeBSD.org>
Date: Wed, 09 Jul 2025 19:08:16 UTC
The branch main has been updated by olgeni:

URL: https://cgit.FreeBSD.org/ports/commit/?id=873bf4fd31b1b8ff42a8be0391415b931a239725

commit 873bf4fd31b1b8ff42a8be0391415b931a239725
Author:     Jimmy Olgeni <olgeni@FreeBSD.org>
AuthorDate: 2025-07-09 16:53:30 +0000
Commit:     Jimmy Olgeni <olgeni@FreeBSD.org>
CommitDate: 2025-07-09 19:07:21 +0000

    sysutils/pipeform: Add new port
    
    pipeform is a terminal user interface (TUI) for displaying Terraform
    runtime progress. It provides an interactive visual representation of
    Terraform operations.
---
 sysutils/Makefile           |  1 +
 sysutils/pipeform/Makefile  | 21 +++++++++++++++++++++
 sysutils/pipeform/distinfo  |  5 +++++
 sysutils/pipeform/pkg-descr |  4 ++++
 4 files changed, 31 insertions(+)

diff --git a/sysutils/Makefile b/sysutils/Makefile
index 1fc727d0f973..9f97815b4807 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -947,6 +947,7 @@
     SUBDIR += pick
     SUBDIR += pidof
     SUBDIR += pies
+    SUBDIR += pipeform
     SUBDIR += pipemeter
     SUBDIR += plasma-pass
     SUBDIR += plasma5-libksysguard
diff --git a/sysutils/pipeform/Makefile b/sysutils/pipeform/Makefile
new file mode 100644
index 000000000000..1574be768b31
--- /dev/null
+++ b/sysutils/pipeform/Makefile
@@ -0,0 +1,21 @@
+PORTNAME=	pipeform
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.2.1
+CATEGORIES=	sysutils
+
+MAINTAINER=	olgeni@FreeBSD.org
+COMMENT=	TUI for Terraform runtime progress
+WWW=		https://github.com/magodo/pipeform
+
+LICENSE=	MPL20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		go:modules
+
+GO_MODULE=	github.com/magodo/pipeform
+
+CGO_ENABLED=	0
+
+PLIST_FILES=	bin/pipeform
+
+.include <bsd.port.mk>
diff --git a/sysutils/pipeform/distinfo b/sysutils/pipeform/distinfo
new file mode 100644
index 000000000000..c762485ab90f
--- /dev/null
+++ b/sysutils/pipeform/distinfo
@@ -0,0 +1,5 @@
+TIMESTAMP = 1752072680
+SHA256 (go/sysutils_pipeform/pipeform-v0.2.1/v0.2.1.mod) = dd7c20554d239ef5557ab5a2b31b23ebf673e0e62737cfa53b64b3f25bd6ee6d
+SIZE (go/sysutils_pipeform/pipeform-v0.2.1/v0.2.1.mod) = 1958
+SHA256 (go/sysutils_pipeform/pipeform-v0.2.1/v0.2.1.zip) = 9b3da8c19a410e040cfdd0c1250dff6aa08d6637fae4ecfc9e88de39db5986a2
+SIZE (go/sysutils_pipeform/pipeform-v0.2.1/v0.2.1.zip) = 467741
diff --git a/sysutils/pipeform/pkg-descr b/sysutils/pipeform/pkg-descr
new file mode 100644
index 000000000000..7bb7d20a4243
--- /dev/null
+++ b/sysutils/pipeform/pkg-descr
@@ -0,0 +1,4 @@
+pipeform is a terminal user interface (TUI) for displaying Terraform runtime
+progress. It provides an interactive visual representation of Terraform
+operations such as plan, apply, and refresh, making it easier to monitor
+the progress of infrastructure changes in real-time.