Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Aug 2024 18:12:44 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: 38efd3289405 - main - devel/got: update to 0.102
Message-ID:  <202408151812.47FICieD006743@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=38efd32894050ef2534877c6f19405c2afec0a51

commit 38efd32894050ef2534877c6f19405c2afec0a51
Author:     Christian Weisgerber <naddy@FreeBSD.org>
AuthorDate: 2024-08-15 18:11:58 +0000
Commit:     Christian Weisgerber <naddy@FreeBSD.org>
CommitDate: 2024-08-15 18:11:58 +0000

    devel/got: update to 0.102
    
    User-visible changes:
    - support for sha256 repositories; the network protocol requires git(1) for now
    - fix handling of .gitignore files containing empty lines
    - fix handling of files without trailing newline in histedit, rebase and merge
    - tog: add ability to mark arbitrary commits to diff them
    - print file index and work tree version in got info
---
 devel/got/Makefile              |  2 +-
 devel/got/distinfo              |  6 +++---
 devel/got/files/patch-tog_tog.c | 26 --------------------------
 3 files changed, 4 insertions(+), 30 deletions(-)

diff --git a/devel/got/Makefile b/devel/got/Makefile
index ee9849a6f1bc..4dbf269dda2d 100644
--- a/devel/got/Makefile
+++ b/devel/got/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	got
-DISTVERSION=	0.101
+DISTVERSION=	0.102
 CATEGORIES=	devel
 MASTER_SITES=	https://gameoftrees.org/releases/portable/
 DISTNAME=	got-portable-${DISTVERSION}
diff --git a/devel/got/distinfo b/devel/got/distinfo
index 0258cf1065fe..a4547f57096e 100644
--- a/devel/got/distinfo
+++ b/devel/got/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1720791919
-SHA256 (got-portable-0.101.tar.gz) = 25064182c731a0cbf80e48bbeecf2d628e2be41046f84aec0d89d8e7f6a6dcc0
-SIZE (got-portable-0.101.tar.gz) = 1479135
+TIMESTAMP = 1723744874
+SHA256 (got-portable-0.102.tar.gz) = aacb50ea664b09d60be6e41ab8cb7b9c694474f90f9de19fbb7e916da6e83777
+SIZE (got-portable-0.102.tar.gz) = 1486148
diff --git a/devel/got/files/patch-tog_tog.c b/devel/got/files/patch-tog_tog.c
deleted file mode 100644
index 314b3a2c03af..000000000000
--- a/devel/got/files/patch-tog_tog.c
+++ /dev/null
@@ -1,26 +0,0 @@
---- tog/tog.c.orig	2024-07-12 06:14:53 UTC
-+++ tog/tog.c
-@@ -42,6 +42,7 @@
- #include <pthread.h>
- #include <libgen.h>
- #include <regex.h>
-+#include <sched.h>
- 
- #include "got_version.h"
- #include "got_error.h"
-@@ -1720,6 +1721,15 @@ view_input(struct tog_view **new, int *done, struct to
- 	}
- 
- 	if (view->searching && !view->search_next_done) {
-+		errcode = pthread_mutex_unlock(&tog_mutex);
-+		if (errcode)
-+			return got_error_set_errno(errcode,
-+			    "pthread_mutex_unlock");
-+		sched_yield();
-+		errcode = pthread_mutex_lock(&tog_mutex);
-+		if (errcode)
-+			return got_error_set_errno(errcode,
-+			    "pthread_mutex_lock");
- 		view->search_next(view);
- 		return NULL;
- 	}



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