Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Sep 2016 19:50:35 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r421732 - in head/devel: . govendor
Message-ID:  <201609101950.u8AJoZKo092648@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Sat Sep 10 19:50:35 2016
New Revision: 421732
URL: https://svnweb.freebsd.org/changeset/ports/421732

Log:
  New port: devel/govendor
  
  Govendor is a tool that fetches dependencies for Go projects and records them
  in the standard vendor.json file.
  
  WWW: https://github.com/kardianos/govendor
  
  PR:		212514
  Submitted by:	Randy Westlund <rwestlun@gmail.com>
  Reviewed by:	mat
  Differential Revision:	https://reviews.freebsd.org/D7818

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Sep 10 19:37:13 2016	(r421731)
+++ head/devel/Makefile	Sat Sep 10 19:50:35 2016	(r421732)
@@ -768,6 +768,7 @@
     SUBDIR += googletest
     SUBDIR += goprotobuf
     SUBDIR += gorm
+    SUBDIR += govendor
     SUBDIR += gperf
     SUBDIR += gpm
     SUBDIR += gprbuild

Added: head/devel/govendor/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/govendor/Makefile	Sat Sep 10 19:50:35 2016	(r421732)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	govendor
+PORTVERSION=	1.0.7
+DISTVERSIONPREFIX=	v
+CATEGORIES=	devel
+
+MAINTAINER=	rwestlun@gmail.com
+COMMENT=	Go vendor tool that works with the standard vendor file
+
+LICENSE=	BSD3CLAUSE
+
+USES=		go
+GO_PKGNAME=	github.com/${GH_ACCOUNT}/${PORTNAME}
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	kardianos
+
+PLIST_FILES=	bin/govendor
+
+.include <bsd.port.mk>

Added: head/devel/govendor/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/govendor/distinfo	Sat Sep 10 19:50:35 2016	(r421732)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1473276490
+SHA256 (kardianos-govendor-v1.0.7_GH0.tar.gz) = a366992fea5db94946dcd8507c9e75d6fbc8323c1582bd0fb1985f035fd60ff0
+SIZE (kardianos-govendor-v1.0.7_GH0.tar.gz) = 113937

Added: head/devel/govendor/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/govendor/pkg-descr	Sat Sep 10 19:50:35 2016	(r421732)
@@ -0,0 +1,4 @@
+Govendor is a tool that fetches dependencies for Go projects and records them
+in the standard vendor.json file.
+
+WWW: https://github.com/kardianos/govendor



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