- do not open and close pack index files needlessly - fix 'got log' and 'tog log' performance issue when lots of tags exist - do history traversal in got-read-pack to improve 'got blame' performance - plug memory leaks in got-read-commit, got-read-tree, and got-read-pack - fix reading reference deltas with GOT_PACK_NO_MMAP builds - disable got-read-pack's delta cache in GOT_NO_OBJ_CACHE builds - make it possible to run regress tests with packed repositories - more portable string comparison in Makefile.inc (patch by Edgar Pettijohn) - prevent rebase with an out-of-date work tree - make 'got checkout' and 'got update' work with read-only repositories
26 lines
546 B
Makefile
26 lines
546 B
Makefile
# $OpenBSD: Makefile,v 1.25 2020/01/08 15:19:46 stsp Exp $
|
|
|
|
COMMENT = game of trees version control system
|
|
|
|
V = 0.24
|
|
DISTNAME = got-${V}
|
|
CATEGORIES = devel
|
|
HOMEPAGE = https://gameoftrees.org
|
|
MAINTAINER = Stefan Sperling <stsp@openbsd.org>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# uses pledge()
|
|
WANTLIB = c curses panel pthread util z
|
|
MASTER_SITES = https://gameoftrees.org/releases/
|
|
|
|
DEBUG_PACKAGES = ${BUILD_PACKAGES}
|
|
|
|
TEST_DEPENDS = devel/git \
|
|
${PKGPATH}=${V}
|
|
TEST_TARGET = regress
|
|
FAKE_FLAGS = MANDIR=${PREFIX}/man/man
|
|
|
|
.include <bsd.port.mk>
|