aboutsummaryrefslogtreecommitdiff
path: root/devel/got
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@FreeBSD.org>2022-07-14 12:17:04 +0000
committerChristian Weisgerber <naddy@FreeBSD.org>2022-07-14 12:17:04 +0000
commit0d03650df322a2b64003af9f90e97e345ed50877 (patch)
tree834f95f2f99b6815964db9d4d716ab218ad48bf9 /devel/got
parentf2268858869216142f1121a2671b3b2a33c2e812 (diff)
downloadports-0d03650df322a2b64003af9f90e97e345ed50877.tar.gz
ports-0d03650df322a2b64003af9f90e97e345ed50877.zip
devel/got: update to 0.74
User-visible changes: - add missing revoked_signers grammar to got.conf(5) - add signer_id option to got.conf(5) - move 'got init' command to 'gotadmin init' - tog: implement global 'S' key map to switch split mode - tog: implement +/- keymaps to resize the focussed split - make 'tog log' error out in shallow Git repositories instead of hanging - tog: enable moving to prev/next blame line in diff view - histedit script: allow mesg command only after pick or edit commands
Diffstat (limited to 'devel/got')
-rw-r--r--devel/got/Makefile2
-rw-r--r--devel/got/distinfo6
-rw-r--r--devel/got/files/patch-lib_sigs.c11
3 files changed, 4 insertions, 15 deletions
diff --git a/devel/got/Makefile b/devel/got/Makefile
index 1d3b9bd1be06..f3c582ac7cb7 100644
--- a/devel/got/Makefile
+++ b/devel/got/Makefile
@@ -1,5 +1,5 @@
PORTNAME= got
-PORTVERSION= 0.73
+PORTVERSION= 0.74
CATEGORIES= devel
MASTER_SITES= https://gameoftrees.org/releases/
diff --git a/devel/got/distinfo b/devel/got/distinfo
index 700fda3a7bca..74b8f05449b1 100644
--- a/devel/got/distinfo
+++ b/devel/got/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1656945056
-SHA256 (got-0.73.tar.gz) = 9b2046c6989d914ff93a042df7f5e97f81de7337d3bc8a8e9ef91784c2090c48
-SIZE (got-0.73.tar.gz) = 644344
+TIMESTAMP = 1657800184
+SHA256 (got-0.74.tar.gz) = ffeb828a0b79864e16cef2eca98f5ec4f2de8ac588d82053df4916a79b517dad
+SIZE (got-0.74.tar.gz) = 648237
diff --git a/devel/got/files/patch-lib_sigs.c b/devel/got/files/patch-lib_sigs.c
deleted file mode 100644
index 8681646adb9d..000000000000
--- a/devel/got/files/patch-lib_sigs.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- lib/sigs.c.orig 2022-07-04 14:54:12 UTC
-+++ lib/sigs.c
-@@ -206,7 +206,7 @@ got_tag_write_signed_data(BUF *buf, struct got_tag_obj
- got_date_format_gmtoff(gmtoff, sizeof(gmtoff),
- got_object_tag_get_tagger_gmtoff(tag));
- if (asprintf(&tagger, "%s %lld %s", got_object_tag_get_tagger(tag),
-- got_object_tag_get_tagger_time(tag), gmtoff) == -1) {
-+ (long long)got_object_tag_get_tagger_time(tag), gmtoff) == -1) {
- err = got_error_from_errno("asprintf");
- goto done;
- }