summaryrefslogtreecommitdiff
path: root/devel/got
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--devel/got/Makefile2
-rw-r--r--devel/got/distinfo6
-rw-r--r--devel/gotestsum/Makefile19
-rw-r--r--devel/gotestsum/distinfo5
-rw-r--r--devel/gotestsum/pkg-descr5
5 files changed, 33 insertions, 4 deletions
diff --git a/devel/got/Makefile b/devel/got/Makefile
index dd5f62bc9ca0..8ce52e9ace7a 100644
--- a/devel/got/Makefile
+++ b/devel/got/Makefile
@@ -1,5 +1,5 @@
PORTNAME= got
-DISTVERSION= 0.113
+DISTVERSION= 0.117
CATEGORIES= devel
MASTER_SITES= https://gameoftrees.org/releases/portable/
DISTNAME= got-portable-${DISTVERSION}
diff --git a/devel/got/distinfo b/devel/got/distinfo
index 0b2fb478124a..83f42d8aac9e 100644
--- a/devel/got/distinfo
+++ b/devel/got/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1749223258
-SHA256 (got-portable-0.113.tar.gz) = 29468a1b9a35fa2aba932807595bc00d010ac54192390468f75a0ad364c56f01
-SIZE (got-portable-0.113.tar.gz) = 1573667
+TIMESTAMP = 1755546260
+SHA256 (got-portable-0.117.tar.gz) = 8d53ffd6f5f5749ba474753e47e45e8e53d57de541be8bb3b0ce8e8fc233c141
+SIZE (got-portable-0.117.tar.gz) = 2497749
diff --git a/devel/gotestsum/Makefile b/devel/gotestsum/Makefile
new file mode 100644
index 000000000000..094930a53549
--- /dev/null
+++ b/devel/gotestsum/Makefile
@@ -0,0 +1,19 @@
+PORTNAME= gotestsum
+DISTVERSIONPREFIX= v
+DISTVERSION= 1.12.3
+PORTREVISION= 1
+CATEGORIES= devel
+
+MAINTAINER= adamw@FreeBSD.org
+COMMENT= Go test runner with output for humans and CI
+WWW= https://github.com/gotestyourself/gotestsum
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USES= go:modules
+GO_MODULE= github.com/gotestyourself/gotestsum
+
+PLIST_FILES= bin/gotestsum
+
+.include <bsd.port.mk>
diff --git a/devel/gotestsum/distinfo b/devel/gotestsum/distinfo
new file mode 100644
index 000000000000..e621abda1e72
--- /dev/null
+++ b/devel/gotestsum/distinfo
@@ -0,0 +1,5 @@
+TIMESTAMP = 1755615589
+SHA256 (go/devel_gotestsum/gotestsum-v1.12.3/v1.12.3.mod) = f81e03c518a0af15594245c050274007bb9a81c4960273890be887e72a1d3aee
+SIZE (go/devel_gotestsum/gotestsum-v1.12.3/v1.12.3.mod) = 608
+SHA256 (go/devel_gotestsum/gotestsum-v1.12.3/v1.12.3.zip) = 74fb757cdaa7711cdc5e3ed38658f0b67d76b56c870ba45a70ed830acd0f7600
+SIZE (go/devel_gotestsum/gotestsum-v1.12.3/v1.12.3.zip) = 184119
diff --git a/devel/gotestsum/pkg-descr b/devel/gotestsum/pkg-descr
new file mode 100644
index 000000000000..e60181bfcc43
--- /dev/null
+++ b/devel/gotestsum/pkg-descr
@@ -0,0 +1,5 @@
+gotestsum runs tests using go test -json, prints formatted test output,
+and a summary of the test run. It is designed to work well for both
+local development, and for automation like CI.
+
+It's `go test`, but just better.