git: 0d03650df322 - main - devel/got: update to 0.74
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 14 Jul 2022 12:17:51 UTC
The branch main has been updated by naddy: URL: https://cgit.FreeBSD.org/ports/commit/?id=0d03650df322a2b64003af9f90e97e345ed50877 commit 0d03650df322a2b64003af9f90e97e345ed50877 Author: Christian Weisgerber <naddy@FreeBSD.org> AuthorDate: 2022-07-14 12:17:04 +0000 Commit: Christian Weisgerber <naddy@FreeBSD.org> CommitDate: 2022-07-14 12:17:04 +0000 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 --- devel/got/Makefile | 2 +- devel/got/distinfo | 6 +++--- devel/got/files/patch-lib_sigs.c | 11 ----------- 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; - }