aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2024-05-05 21:55:58 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2024-05-05 21:55:58 +0000
commit43aef7e44acccf256cb9c8d7751c40316cb39e27 (patch)
tree03b6ccad32470dc8cd739dc1defd7eecdf5f7225
parentd0caf00dd5d7bf72de2cb30a0d36945de318bac9 (diff)
textproc/jqp: New port: TUI playground to experiment with jq
-rw-r--r--textproc/Makefile1
-rw-r--r--textproc/jqp/Makefile19
-rw-r--r--textproc/jqp/distinfo5
-rw-r--r--textproc/jqp/pkg-descr3
4 files changed, 28 insertions, 0 deletions
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.