diff options
| author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2025-07-09 16:53:30 +0000 |
|---|---|---|
| committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2025-07-09 19:07:21 +0000 |
| commit | 873bf4fd31b1b8ff42a8be0391415b931a239725 (patch) | |
| tree | de4d62b62f6b4d767978e94a27a78e2879961737 | |
| parent | b914a67783fe251f5898a98de057b074573055c7 (diff) | |
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.
| -rw-r--r-- | sysutils/Makefile | 1 | ||||
| -rw-r--r-- | sysutils/pipeform/Makefile | 21 | ||||
| -rw-r--r-- | sysutils/pipeform/distinfo | 5 | ||||
| -rw-r--r-- | sysutils/pipeform/pkg-descr | 4 |
4 files changed, 31 insertions, 0 deletions
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. |
