Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Apr 2016 19:06:05 +0000 (UTC)
From:      Thomas Zander <riggs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r413083 - in head/devel: . gvp
Message-ID:  <201604111906.u3BJ65IP064140@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: riggs
Date: Mon Apr 11 19:06:05 2016
New Revision: 413083
URL: https://svnweb.freebsd.org/changeset/ports/413083

Log:
  Add devel/gvp, a versioning manager for modules written in Go (lang/go)
  
  PR:		208338
  Submitted by:	lukejee@gmail.com (maintainer)

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Apr 11 17:28:56 2016	(r413082)
+++ head/devel/Makefile	Mon Apr 11 19:06:05 2016	(r413083)
@@ -765,6 +765,7 @@
     SUBDIR += guiloader-c++
     SUBDIR += gumbo
     SUBDIR += gvfs
+    SUBDIR += gvp
     SUBDIR += gwenhywfar
     SUBDIR += gwenhywfar-fox16
     SUBDIR += gwenhywfar-gtk2

Added: head/devel/gvp/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/gvp/Makefile	Mon Apr 11 19:06:05 2016	(r413083)
@@ -0,0 +1,34 @@
+# Created by: Luke Jee <lukejee@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	gvp
+PORTVERSION=	0.3.0
+CATEGORIES=	devel
+
+MAINTAINER=	lukejee@gmail.com
+COMMENT=	Go Versioning Manager
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENCE
+
+RUN_DEPENDS=	bash:${PORTSDIR}/shells/bash \
+		go:${PORTSDIR}/lang/go
+
+USES=		shebangfix
+
+SHEBANG_FILES=	bin/gvp
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	pote
+GH_TAGNAME=	8bcab74
+
+NO_BUILD=	yes
+
+NO_ARCH=	yes
+
+PLIST_FILES=	bin/gvp
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/bin/gvp ${STAGEDIR}${PREFIX}/bin/
+
+.include <bsd.port.mk>

Added: head/devel/gvp/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/gvp/distinfo	Mon Apr 11 19:06:05 2016	(r413083)
@@ -0,0 +1,2 @@
+SHA256 (pote-gvp-0.3.0-8bcab74_GH0.tar.gz) = 4c211a3c0bd652a589d7135c3f9fbe01aaff750200ca495f67514c613cae96ab
+SIZE (pote-gvp-0.3.0-8bcab74_GH0.tar.gz) = 2273871

Added: head/devel/gvp/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/gvp/pkg-descr	Mon Apr 11 19:06:05 2016	(r413083)
@@ -0,0 +1,13 @@
+Go Versioning Packager
+
+gvp stands for Go Versioning Packager and is based on gst, a similar tool
+that provides dependency isolation for Ruby gems.
+
+The tool modifies your GOPATH to point to a local .godeps/ directory so 
+that you can keep the dependencies of your project isolated there, 
+it also modifies GOBIN and PATH to include the new GOPATH/bin directory.
+
+gvp is a companion tool to gpm but both tools can be used independently
+from each other.
+
+https://github.com/pote/gvp



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604111906.u3BJ65IP064140>