- fix suspending and resuming tog with Ctrl-Z and fg (reported by naddy@) - fix 'tog tree' usage displayed in error case (patch by naddy@) - support Git-style "lightweight" tags as arguments for 'got diff' - handle Git-style "lightweight" tags in got tag -l - make got and tog accept a --version argument (prompted by tedu@) - add -E option to 'got checkout' allowing use of a non-empty work tree path - make 'tog log PATH' fail when a non-existent path is specified - fix out of bounds access (patch by Martin <openbsd () academicsolutions ! ch>) - fix switching to tog's tree view when logging a path (reported by naddy@)
26 lines
546 B
Makefile
26 lines
546 B
Makefile
# $OpenBSD: Makefile,v 1.26 2020/01/14 19:00:28 stsp Exp $
|
|
|
|
COMMENT = game of trees version control system
|
|
|
|
V = 0.25
|
|
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>
|