Index: head/devel/Makefile =================================================================== --- head/devel/Makefile +++ head/devel/Makefile @@ -430,6 +430,7 @@ SUBDIR += deforaos-libsystem SUBDIR += deheader SUBDIR += delta + SUBDIR += dep SUBDIR += derelict-sdl2 SUBDIR += derelict-util SUBDIR += desktop-file-utils Index: head/devel/dep/Makefile =================================================================== --- head/devel/dep/Makefile +++ head/devel/dep/Makefile @@ -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 Index: head/devel/dep/distinfo =================================================================== --- head/devel/dep/distinfo +++ head/devel/dep/distinfo @@ -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 Index: head/devel/dep/pkg-descr =================================================================== --- head/devel/dep/pkg-descr +++ head/devel/dep/pkg-descr @@ -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