Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jan 2018 17:24:54 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r458984 - in head/devel: . dep
Message-ID:  <201801141724.w0EHOsMK056859@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Sun Jan 14 17:24:54 2018
New Revision: 458984
URL: https://svnweb.freebsd.org/changeset/ports/458984

Log:
  devel/dep: create port
  
  Dep is a Go tool for managing vendor dependencies (not to be confused
  with godep, a different, deprecated tool). dep updates the vendor/
  directory contents based on a manifest, prunes unnecessary dependencies,
  and adds missing dependencies to vendor/ as necessary.
  
  dep is the heir-apparent for vendor management and is being actively
  driven by the Go core team with an eye toward inclusion in the Go tool.
  
  WWW: https://github.com/golang/dep
  
  Submitted by:		Sam Gwydir <sam.gwydir@joyent.com>
  Reviewed by:		tobik
  Differential Revision:	https://reviews.freebsd.org/D13364

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jan 14 16:43:00 2018	(r458983)
+++ head/devel/Makefile	Sun Jan 14 17:24:54 2018	(r458984)
@@ -430,6 +430,7 @@
     SUBDIR += deforaos-libsystem
     SUBDIR += deheader
     SUBDIR += delta
+    SUBDIR += dep
     SUBDIR += derelict-sdl2
     SUBDIR += derelict-util
     SUBDIR += desktop-file-utils

Added: head/devel/dep/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/dep/Makefile	Sun Jan 14 17:24:54 2018	(r458984)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	dep
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.3.2
+CATEGORIES=	devel
+
+MAINTAINER=	sam.gwydir@joyent.com
+COMMENT=	Prototype dependency management tool for Go
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		go
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	golang
+
+GO_PKGNAME=	github.com/${GH_ACCOUNT}/${PORTNAME}
+GO_TARGET=	github.com/${GH_ACCOUNT}/${PORTNAME}/cmd/dep
+
+PLIST_FILES=	bin/dep
+
+.include <bsd.port.mk>

Added: head/devel/dep/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/dep/distinfo	Sun Jan 14 17:24:54 2018	(r458984)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1512082160
+SHA256 (golang-dep-v0.3.2_GH0.tar.gz) = 327124953d76293eaba6001e17bb8a31371313ab39eed1fa9eac01f8b5c1de21
+SIZE (golang-dep-v0.3.2_GH0.tar.gz) = 4683014

Added: head/devel/dep/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/dep/pkg-descr	Sun Jan 14 17:24:54 2018	(r458984)
@@ -0,0 +1,9 @@
+Dep is a Go tool for managing vendor dependencies (not to be confused
+with godep, a different, deprecated tool). dep updates the vendor/
+directory contents based on a manifest, prunes unnecessary dependencies,
+and adds missing dependencies to vendor/ as necessary.
+
+dep is the heir-apparent for vendor management and is being actively
+driven by the Go core team with an eye toward inclusion in the Go tool.
+
+WWW: https://github.com/golang/dep



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