From owner-svn-ports-all@freebsd.org Sun Jan 14 17:24:55 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A552BE7BD55; Sun, 14 Jan 2018 17:24:55 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C3B5DC3; Sun, 14 Jan 2018 17:24:55 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AE1F724AFD; Sun, 14 Jan 2018 17:24:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0EHOswq056863; Sun, 14 Jan 2018 17:24:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0EHOsMK056859; Sun, 14 Jan 2018 17:24:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201801141724.w0EHOsMK056859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 14 Jan 2018 17:24:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458984 - in head/devel: . dep X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . dep X-SVN-Commit-Revision: 458984 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jan 2018 17:24:55 -0000 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 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 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