Date: Mon, 24 Oct 2022 21:17:52 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: d0546eb107ea - main - devel/got: update to 0.77 Message-ID: <202210242117.29OLHq4p014547@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=d0546eb107eaf6a135d55f75990fd213ff6e48a0 commit d0546eb107eaf6a135d55f75990fd213ff6e48a0 Author: Christian Weisgerber <naddy@FreeBSD.org> AuthorDate: 2022-10-24 21:17:19 +0000 Commit: Christian Weisgerber <naddy@FreeBSD.org> CommitDate: 2022-10-24 21:17:19 +0000 devel/got: update to 0.77 No significant user-visible changes. --- devel/got/Makefile | 2 +- devel/got/distinfo | 6 +++--- .../got/files/patch-libexec_got-index-pack_got-index-pack.c | 8 ++++---- devel/got/files/patch-regress_cmdline_common.sh | 13 +++++++++++-- 4 files changed, 19 insertions(+), 10 deletions(-) diff --git a/devel/got/Makefile b/devel/got/Makefile index 033d5dbe581e..1308e85f4d16 100644 --- a/devel/got/Makefile +++ b/devel/got/Makefile @@ -1,5 +1,5 @@ PORTNAME= got -PORTVERSION= 0.76 +PORTVERSION= 0.77 CATEGORIES= devel MASTER_SITES= https://gameoftrees.org/releases/ diff --git a/devel/got/distinfo b/devel/got/distinfo index b7d53b327852..61943694a250 100644 --- a/devel/got/distinfo +++ b/devel/got/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1663960911 -SHA256 (got-0.76.tar.gz) = a2d735cbbf4537bac728d87e345e0458d7fa45f51a7533226ac1da7879a39350 -SIZE (got-0.76.tar.gz) = 777980 +TIMESTAMP = 1666621785 +SHA256 (got-0.77.tar.gz) = de2a1361c9cac212632f140c123871c7bdb07dbfb616a685032a137936d08456 +SIZE (got-0.77.tar.gz) = 830525 diff --git a/devel/got/files/patch-libexec_got-index-pack_got-index-pack.c b/devel/got/files/patch-libexec_got-index-pack_got-index-pack.c index 1e2d4660eac6..bc07b3bdb9bc 100644 --- a/devel/got/files/patch-libexec_got-index-pack_got-index-pack.c +++ b/devel/got/files/patch-libexec_got-index-pack_got-index-pack.c @@ -1,14 +1,14 @@ ---- libexec/got-index-pack/got-index-pack.c.orig 2022-06-19 18:47:42 UTC +--- libexec/got-index-pack/got-index-pack.c.orig 2022-10-20 14:40:52 UTC +++ libexec/got-index-pack/got-index-pack.c @@ -15,6 +15,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <sys/capsicum.h> + #include <sys/types.h> #include <sys/queue.h> - #include <sys/stat.h> - #include <sys/time.h> -@@ -1020,6 +1021,11 @@ main(int argc, char **argv) + #include <sys/mman.h> +@@ -110,6 +111,11 @@ main(int argc, char **argv) /* revoke access to most system calls */ if (pledge("stdio recvfd", NULL) == -1) { err = got_error_from_errno("pledge"); diff --git a/devel/got/files/patch-regress_cmdline_common.sh b/devel/got/files/patch-regress_cmdline_common.sh index fe56acb5f345..fd950c2005dd 100644 --- a/devel/got/files/patch-regress_cmdline_common.sh +++ b/devel/got/files/patch-regress_cmdline_common.sh @@ -1,9 +1,18 @@ ---- regress/cmdline/common.sh.orig 2021-03-22 10:05:11 UTC +--- regress/cmdline/common.sh.orig 2022-08-23 09:11:50 UTC +++ regress/cmdline/common.sh -@@ -26,6 +26,20 @@ export GOT_TEST_ROOT="/tmp" +@@ -27,6 +27,29 @@ export GOT_IGNORE_GITCONFIG=1 export MALLOC_OPTIONS=S ++# work around the fix for CVE-2022-39253 in Git 2.38.1 ++git() ++( ++ if [ "$1" = submodule ]; then ++ set - -c protocol.file.allow=always "$@" ++ fi ++ exec git "$@" ++) ++ +# compat wrapper +sed() +(
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202210242117.29OLHq4p014547>