Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Jan 2025 18:35:16 GMT
From:      Christian Weisgerber <naddy@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 18b5f626cb89 - main - devel/got: update to 0.107
Message-ID:  <202501051835.505IZG4M068890@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by naddy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=18b5f626cb89324bfacaeecaeb16271464726497

commit 18b5f626cb89324bfacaeecaeb16271464726497
Author:     Christian Weisgerber <naddy@FreeBSD.org>
AuthorDate: 2025-01-05 18:33:45 +0000
Commit:     Christian Weisgerber <naddy@FreeBSD.org>
CommitDate: 2025-01-05 18:33:45 +0000

    devel/got: update to 0.107
    
    User-visible changes:
    - hide ssh debug output during fetch/send -v, keep showing it at -vv and -vvv
    - implement tog work tree diff support via log view and CLI
    - improve error reporting when 'got patch' encounters malformed patches
    - add ssh -J jumphost support to got commands which use the network
    - got tag: change -s signer to -S signer
    - got tag: provide one-line output mode via new -s option
---
 devel/got/Makefile                |  2 +-
 devel/got/distinfo                |  6 +++---
 devel/got/files/patch-lib_fetch.c | 22 ----------------------
 3 files changed, 4 insertions(+), 26 deletions(-)

diff --git a/devel/got/Makefile b/devel/got/Makefile
index 0609adeefe77..10b98b9d1bf0 100644
--- a/devel/got/Makefile
+++ b/devel/got/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	got
-DISTVERSION=	0.106
+DISTVERSION=	0.107
 CATEGORIES=	devel
 MASTER_SITES=	https://gameoftrees.org/releases/portable/
 DISTNAME=	got-portable-${DISTVERSION}
diff --git a/devel/got/distinfo b/devel/got/distinfo
index 0924a0a0c37c..8d31d258d216 100644
--- a/devel/got/distinfo
+++ b/devel/got/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1732899001
-SHA256 (got-portable-0.106.tar.gz) = 3079d742c125047de339dd923d75d0b960995a3a4b567ed08ef36d112bdb07cc
-SIZE (got-portable-0.106.tar.gz) = 1510753
+TIMESTAMP = 1736101132
+SHA256 (got-portable-0.107.tar.gz) = 3f5851d84ba28450e5d97d080e86deb3ee68786de8c85d2d080d44f3cfab6a27
+SIZE (got-portable-0.107.tar.gz) = 1524409
diff --git a/devel/got/files/patch-lib_fetch.c b/devel/got/files/patch-lib_fetch.c
deleted file mode 100644
index bcb575f253fc..000000000000
--- a/devel/got/files/patch-lib_fetch.c
+++ /dev/null
@@ -1,22 +0,0 @@
-Upstream commit 55569948434c65bb416f2d0f2a400a1bf3da5a78
-
---- lib/fetch.c.orig	2024-11-28 17:28:16 UTC
-+++ lib/fetch.c
-@@ -166,7 +166,7 @@ got_fetch_pack(struct got_object_id **pack_hash, struc
- 
- 	TAILQ_FOREACH(re, &my_refs, entry) {
- 		struct got_object_id *id;
--		const char *refname;
-+		char *refname;
- 
- 		if (got_ref_is_symbolic(re->ref))
- 			continue;
-@@ -183,7 +183,7 @@ got_fetch_pack(struct got_object_id **pack_hash, struc
- 		if (err)
- 			goto done;
- 		if (new == NULL){
--			free(&refname);
-+			free(refname);
- 			free(id);
- 		}
- 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501051835.505IZG4M068890>