Date: Sun, 13 Dec 2020 15:20:01 +0000 (UTC) From: Christian Weisgerber <naddy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r557991 - in head/devel/got: . files Message-ID: <202012131520.0BDFK1sB064065@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: naddy Date: Sun Dec 13 15:20:01 2020 New Revision: 557991 URL: https://svnweb.freebsd.org/changeset/ports/557991 Log: Update to 0.45. User-visible changes: - new diff implementation from git.gameoftrees.org/diff.git - new blame algorithm which compares commit N-1 to N - handle binary files in got/tog diff commands; add -a options to force text - consistently label removed files as "/dev/null" in diff headers - add histedit -f flag for folding shortcut - prevent log message loss of folded commits during histedit - tog: show current/total line numbers in diff view header - tog: highlight matched search terms in diff and blame views - tog: reset diff view's scroll position if diff context shrinks too much - tog: make tog diff accept reference and tag arguments; add -w and -C options - tog: new 'tog ref' subcommand which displays references in the repository - tog: fix entry selection when moving to the parent in tree view - tog: fix page-down/page-up scrolling in the tree view - tog: log view now requests more commits when the window expands - tog: fix bug on FreeBSD where pressing 'q' in a child view caused tog to exit - tog: fix move to next/prev commit in diff view if log is not displayed - tog: make ^L in the log view stick to branches/tags selected via -c option - tog: make tree view keep track of branches/tags specified via -c - tog: fix crashes when the log view reloads displayed data - tog: resize events go to child views as well as parent views - tog: move the tree view's selection cursor up if terminal shrinks too much - tog: fix display of lines that end in "\r\n" Added: head/devel/got/files/patch-regress_cmdline_histedit.sh (contents, props changed) Deleted: head/devel/got/files/patch-tog_tog.c Modified: head/devel/got/Makefile head/devel/got/distinfo head/devel/got/files/patch-Makefile.inc head/devel/got/files/patch-got_Makefile head/devel/got/files/patch-tog_Makefile Modified: head/devel/got/Makefile ============================================================================== --- head/devel/got/Makefile Sun Dec 13 14:58:36 2020 (r557990) +++ head/devel/got/Makefile Sun Dec 13 15:20:01 2020 (r557991) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= got -PORTVERSION= 0.44 -PORTREVISION= 1 +PORTVERSION= 0.45 CATEGORIES= devel MASTER_SITES= https://gameoftrees.org/releases/ Modified: head/devel/got/distinfo ============================================================================== --- head/devel/got/distinfo Sun Dec 13 14:58:36 2020 (r557990) +++ head/devel/got/distinfo Sun Dec 13 15:20:01 2020 (r557991) @@ -1,3 +1,3 @@ -TIMESTAMP = 1605047903 -SHA256 (got-0.44.tar.gz) = eff4956c07ee0eaa62652cf57db8145782703d8799e383f4bd5576a969cc7526 -SIZE (got-0.44.tar.gz) = 447925 +TIMESTAMP = 1607870946 +SHA256 (got-0.45.tar.gz) = 48f97532b8640dcfae37fee7da86e4bb8e56d149c8d1b9d3b54dddebbe894c56 +SIZE (got-0.45.tar.gz) = 479367 Modified: head/devel/got/files/patch-Makefile.inc ============================================================================== --- head/devel/got/files/patch-Makefile.inc Sun Dec 13 14:58:36 2020 (r557990) +++ head/devel/got/files/patch-Makefile.inc Sun Dec 13 15:20:01 2020 (r557991) @@ -1,8 +1,8 @@ ---- Makefile.inc.orig 2020-07-25 09:10:27 UTC +--- Makefile.inc.orig 2020-11-26 12:53:05 UTC +++ Makefile.inc -@@ -3,6 +3,13 @@ CPPFLAGS += -DGOT_LIBEXECDIR=${LIBEXECDIR} -DGOT_VERSI - #CFLAGS += -DGOT_NO_OBJ_CACHE +@@ -4,6 +4,13 @@ CPPFLAGS += -DGOT_LIBEXECDIR=${LIBEXECDIR} -DGOT_VERSI #CFLAGS += -DGOT_OBJ_CACHE_DEBUG + #CFLAGS += -DGOT_DIFF_NO_MMAP +OPENBSD_COMPAT := ${.PARSEDIR}/openbsd-compat +CFLAGS += ${CPPFLAGS} -I${OPENBSD_COMPAT} Modified: head/devel/got/files/patch-got_Makefile ============================================================================== --- head/devel/got/files/patch-got_Makefile Sun Dec 13 14:58:36 2020 (r557990) +++ head/devel/got/files/patch-got_Makefile Sun Dec 13 15:20:01 2020 (r557991) @@ -1,6 +1,6 @@ ---- got/Makefile.orig 2020-09-14 14:04:47 UTC +--- got/Makefile.orig 2020-11-10 22:54:37 UTC +++ got/Makefile -@@ -25,10 +25,6 @@ DPADD = ${LIBZ} ${LIBUTIL} +@@ -29,10 +29,6 @@ DPADD = ${LIBZ} ${LIBUTIL} NOMAN = Yes .endif Added: head/devel/got/files/patch-regress_cmdline_histedit.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/got/files/patch-regress_cmdline_histedit.sh Sun Dec 13 15:20:01 2020 (r557991) @@ -0,0 +1,20 @@ +--- regress/cmdline/histedit.sh.orig 2020-12-13 15:08:45 UTC ++++ regress/cmdline/histedit.sh +@@ -1468,7 +1468,7 @@ test_histedit_fold_only() { + + cat > $testroot/editor.sh <<EOF + #!/bin/sh +-sed -i 's/.*/committing folded changes/' "\$1" ++sed -i '' 's/.*/committing folded changes/' "\$1" + EOF + chmod +x $testroot/editor.sh + +@@ -1584,7 +1584,7 @@ test_histedit_fold_only_empty_logmsg() { + + cat > $testroot/editor.sh <<EOF + #!/bin/sh +-sed -i 'd' "\$1" ++sed -i '' 'd' "\$1" + EOF + chmod +x $testroot/editor.sh + Modified: head/devel/got/files/patch-tog_Makefile ============================================================================== --- head/devel/got/files/patch-tog_Makefile Sun Dec 13 14:58:36 2020 (r557990) +++ head/devel/got/files/patch-tog_Makefile Sun Dec 13 15:20:01 2020 (r557991) @@ -1,6 +1,6 @@ ---- tog/Makefile.orig 2020-09-11 17:05:16 UTC +--- tog/Makefile.orig 2020-11-10 22:54:37 UTC +++ tog/Makefile -@@ -25,8 +25,4 @@ DPADD = ${LIBZ} ${LIBUTIL} +@@ -28,8 +28,4 @@ DPADD = ${LIBZ} ${LIBUTIL} NOMAN = Yes .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012131520.0BDFK1sB064065>