git: 43aef7e44acc - main - textproc/jqp: New port: TUI playground to experiment with jq

From: Yuri Victorovich <yuri_at_FreeBSD.org>
Date: Sun, 05 May 2024 21:56:34 UTC
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=43aef7e44acccf256cb9c8d7751c40316cb39e27

commit 43aef7e44acccf256cb9c8d7751c40316cb39e27
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2024-05-05 21:55:58 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2024-05-05 21:55:58 +0000

    textproc/jqp: New port: TUI playground to experiment with jq
---
 textproc/Makefile      |  1 +
 textproc/jqp/Makefile  | 19 +++++++++++++++++++
 textproc/jqp/distinfo  |  5 +++++
 textproc/jqp/pkg-descr |  3 +++
 4 files changed, 28 insertions(+)

diff --git a/textproc/Makefile b/textproc/Makefile
index a0ea16e4f6a1..507132946d4a 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -345,6 +345,7 @@
     SUBDIR += jo
     SUBDIR += jq
     SUBDIR += jql
+    SUBDIR += jqp
     SUBDIR += jrefentry
     SUBDIR += jshon
     SUBDIR += json-yaml
diff --git a/textproc/jqp/Makefile b/textproc/jqp/Makefile
new file mode 100644
index 000000000000..0daf748ea281
--- /dev/null
+++ b/textproc/jqp/Makefile
@@ -0,0 +1,19 @@
+PORTNAME=	jqp
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.6.0
+CATEGORIES=	textproc
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	TUI playground to experiment with jq
+WWW=		https://github.com/noahgorstein/jqp
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		go:modules
+
+GO_MODULE=	github.com/noahgorstein/jqp
+
+PLIST_FILES=	bin/${PORTNAME}
+
+.include <bsd.port.mk>
diff --git a/textproc/jqp/distinfo b/textproc/jqp/distinfo
new file mode 100644
index 000000000000..6145a911ed2e
--- /dev/null
+++ b/textproc/jqp/distinfo
@@ -0,0 +1,5 @@
+TIMESTAMP = 1714945297
+SHA256 (go/textproc_jqp/jqp-v0.6.0/v0.6.0.mod) = 784fbb08e56f26d3863b2f7de01357e0e29f2b7684363af7615e822de38d88b7
+SIZE (go/textproc_jqp/jqp-v0.6.0/v0.6.0.mod) = 1909
+SHA256 (go/textproc_jqp/jqp-v0.6.0/v0.6.0.zip) = eaebbf642c5e3154b5fcb836da45ebf79d418eff1eb45a55e3e20b0104ac7e16
+SIZE (go/textproc_jqp/jqp-v0.6.0/v0.6.0.zip) = 46097
diff --git a/textproc/jqp/pkg-descr b/textproc/jqp/pkg-descr
new file mode 100644
index 000000000000..6a69d1c8961a
--- /dev/null
+++ b/textproc/jqp/pkg-descr
@@ -0,0 +1,3 @@
+jqp is a TUI playground for exploring jq.
+
+This application utilizes the implementation of jq written in Go, gojq.