From owner-svn-ports-all@freebsd.org Sun Dec 13 15:20:03 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 07A9E4BBEAE; Sun, 13 Dec 2020 15:20:03 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cv7Vp6s9Dz4Y3b; Sun, 13 Dec 2020 15:20:02 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DE2E211E0C; Sun, 13 Dec 2020 15:20:02 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BDFK2bx064072; Sun, 13 Dec 2020 15:20:02 GMT (envelope-from naddy@FreeBSD.org) Received: (from naddy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BDFK1sB064065; Sun, 13 Dec 2020 15:20:01 GMT (envelope-from naddy@FreeBSD.org) Message-Id: <202012131520.0BDFK1sB064065@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: naddy set sender to naddy@FreeBSD.org using -f From: Christian Weisgerber Date: Sun, 13 Dec 2020 15:20:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r557991 - in head/devel/got: . files X-SVN-Group: ports-head X-SVN-Commit-Author: naddy X-SVN-Commit-Paths: in head/devel/got: . files X-SVN-Commit-Revision: 557991 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Dec 2020 15:20:03 -0000 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 < $testroot/editor.sh <