96c93430c4
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
24 lines
425 B
Makefile
24 lines
425 B
Makefile
# $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>
|