svn commit: r460862 - in head/devel: . git-town

Yuri Victorovich yuri at FreeBSD.org
Sun Feb 4 02:49:00 UTC 2018


Author: yuri
Date: Sun Feb  4 02:48:58 2018
New Revision: 460862
URL: https://svnweb.freebsd.org/changeset/ports/460862

Log:
  New port: devel/git-town: Git extension for generic, high-level git workflow support
  
  This extension adds several git commands of the form "git town {subcommand} {arguments}".
  See the tutorial: http://www.git-town.com/tutorial.html
  
  Approved by:	adamw (mentor)
  Differential Revision:	https://reviews.freebsd.org/D14189

Added:
  head/devel/git-town/
  head/devel/git-town/Makefile   (contents, props changed)
  head/devel/git-town/distinfo   (contents, props changed)
  head/devel/git-town/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Feb  4 01:01:34 2018	(r460861)
+++ head/devel/Makefile	Sun Feb  4 02:48:58 2018	(r460862)
@@ -766,6 +766,7 @@
     SUBDIR += git-modes
     SUBDIR += git-review
     SUBDIR += git-subversion
+    SUBDIR += git-town
     SUBDIR += gitaly
     SUBDIR += gitblit
     SUBDIR += gitflow

Added: head/devel/git-town/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-town/Makefile	Sun Feb  4 02:48:58 2018	(r460862)
@@ -0,0 +1,36 @@
+# $FreeBSD$
+
+PORTNAME=	git-town
+DISTVERSIONPREFIX=	v
+DISTVERSION=	6.0.1
+CATEGORIES=	devel
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Git extension for generic, high-level git workflow support
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	go:lang/go
+RUN_DEPENDS=	git:devel/git
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	Originate
+GH_SUBDIR=	src/github.com/${GH_ACCOUNT}/${PORTNAME}
+
+PLIST_FILES=	bin/${PORTNAME}
+
+OPTIONS_DEFINE=	DOCS
+
+PORTDOCS=	*
+
+do-build:
+	@cd ${WRKSRC}/${GH_SUBDIR} && ${SETENV} GOPATH=${WRKSRC} go build
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
+
+do-install-DOCS-on:
+	cd ${WRKSRC}/documentation && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/devel/git-town/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-town/distinfo	Sun Feb  4 02:48:58 2018	(r460862)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1517708275
+SHA256 (Originate-git-town-v6.0.1_GH0.tar.gz) = c24972d005c708c3b2534113256ce5a6d447c0576013aea3443156858c4bbf4f
+SIZE (Originate-git-town-v6.0.1_GH0.tar.gz) = 10039806

Added: head/devel/git-town/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/git-town/pkg-descr	Sun Feb  4 02:48:58 2018	(r460862)
@@ -0,0 +1,6 @@
+Git Town makes software development teams who use Git even more productive
+and happy. It adds Git commands that support GitHub Flow, Git Flow, the Nvie
+model, GitLab Flow, and other workflows more directly, and it allows you to
+perform many common Git operations faster and easier.
+
+WWW: http://www.git-town.com


More information about the svn-ports-all mailing list