./devel/got, Game of Trees VCS to manipulate git repositories

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.110, Package name: got-0.110, Maintainer: vins

This is the portable version of the Game of Trees (GoT) version control
system.

Primary features of GoT include:

* Prioritizes ease of use and simplicity over flexibility.
* Designed from scratch using a OpenBSD-style C code base and licensed
under ISC.
* Uses Git repositories to store versioned data. GoT is fully compatible
with Git, making it possible to work with both Got and Git on the same
repository.


Master sites:

Filesize: 1523.905 KB

Version history: (Expand)


CVS history: (Expand)


   2025-03-30 10:19:48 by Paolo Vincenzo Olivo | Files touched by this commit (1)
Log message:
got: add p5-Net-Daemon to TEST_DEPENDS
   2025-03-30 09:34:28 by Paolo Vincenzo Olivo | Files touched by this commit (2) | Package updated
Log message:
devel/got: update to 0.110

# changes

* got 0.110; 2025-02-20
- fix an endless loop in got-read-pack (regression from 0.109)
- change gotwebd diff algorithm from Myers to Patience diff
- gotd regress depends on p5-Net-Daemon now due to an added test case
   2025-03-22 14:40:01 by Paolo Vincenzo Olivo | Files touched by this commit (1)
Log message:
devel/got: use MAKE_DIRS_PERMS to set permissions
   2025-03-22 13:51:45 by Paolo Vincenzo Olivo | Files touched by this commit (1)
Log message:
devel/got: threads required
   2025-03-22 11:37:27 by Paolo Vincenzo Olivo | Files touched by this commit (1)
Log message:
devel/got: fix build with NetBSD curses
   2025-03-09 21:53:49 by Paolo Vincenzo Olivo | Files touched by this commit (2) | Package updated
Log message:
devel/got: update to 0.109

* got 0.109; 2025-02-14
- fix gotd failing to protect references when the client sends an empty pack
- during pack generation, fix exclusion of commits via an ancestor commit
- fix a bogus "received unexpected privsep message" error from gotsh
- fix diffstat path order bug in field width computation
- gotwebd: preserve 'folder=' parameter when following More links
   2025-02-13 17:48:29 by Paolo Vincenzo Olivo | Files touched by this commit (2) | Package updated
Log message:
devel/got: update to 0.108

# changes
* got 0.108; 2025-01-22
- add ssh -i identity-file support to commands which use the network
- make 'got import' output independent of readdir(3) entry order
- avoid full file content comparisons in 'got status' for speed
- tog: fix NULL deref when log view T keymap is used on worktree entry
- tog: fix a deadlock (hang) in the log view implementation
- tog: plug a memory leak
- tog: do not exit if a tag pointing at a non-commit is selected in ref view
- tog: do not mark an incorrect base commit in nested log views
- tog: fix NULL deref when scrolling small tree views down
- tog: avoid showing a negative log view entry index
- tog: do not apply a pointless count modifier to the H, &, p keymaps
- tog: do not make users wait for the worktree diff to quit out of tog
- gotwebd: make parent process drop root privileges
- gotwebd: drop read access to /var/www from parent process
- gotwebd: rename "socket" processes to "server"
- gotadmin cleanup: pack the repository before removing objects
- gotadmin cleanup: do not delete directly referenced trees and blobs
- gotadmin cleanup: do not delete objects reachable via nested tags
- regress: skip test memleak_send_basic in sha256 mode; expected to fail
- regress: make seq(1) invocations portable to fix test failures on linux
- regress/gotwebd: implement paginated commits test
   2025-01-13 20:35:40 by Paolo Vincenzo Olivo | Files touched by this commit (2) | Package updated
Log message:
devel/got: update to 0.107

# changes

* got 0.107; 2024-12-28
- gotwebd.css styling tweaks
- hide ssh debug output during fetch/send -v, keep showing it at -vv and -vvv
- discern mixed-commit worktree diffs with commit ID headers
- gotwebd: avoid printf("%s", NULL) when path parameter is not in query
- implement a regression test harness for gotwebd
- fix free() called with bogus pointer in 'got fetch'; regression from 0.106
- ensure config privsep children get collected upon error to prevent zombies
- fix some fprintf(3) failure checks
- gotwebd: replace strftime(3) with asctime_r(3) for the sake of consistency
- tweak gotwebd log message levels, and log requests in verbose (-v) mode
- prevent out-of-bounds read during gotwebd fcgi record debugging
- implement tog work tree diff support via log view and CLI
- improve error reporting when 'got patch' encounters malformed patches
- improve got_opentemp_named_fd error reporting by showing the path template
- add ssh -J jumphost support to got and cvg commands which use the network
- add regression tests checking for memory leaks with Otto malloc and ktrace
- got tag: change -s signer to -S signer
- got tag: provide one-line output mode via new -s option
- tog: use wtimeout(3) instead of nodelay(3) to honour our display refresh rate
- switch got_pathlist data store from TAILQ to RB-tree
- plug many memory leaks, some of which affected gotwebd in particular