From owner-svn-ports-head@freebsd.org Thu Dec 15 21:45:08 2016 Return-Path: Delivered-To: svn-ports-head@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 D6A52C82239; Thu, 15 Dec 2016 21:45:08 +0000 (UTC) (envelope-from cs@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 mx1.freebsd.org (Postfix) with ESMTPS id 8CBB5135; Thu, 15 Dec 2016 21:45:08 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBFLj7nD019030; Thu, 15 Dec 2016 21:45:07 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBFLj7qE019026; Thu, 15 Dec 2016 21:45:07 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201612152145.uBFLj7qE019026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Thu, 15 Dec 2016 21:45:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428635 - in head/devel: . go-glide X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Dec 2016 21:45:08 -0000 Author: cs Date: Thu Dec 15 21:45:07 2016 New Revision: 428635 URL: https://svnweb.freebsd.org/changeset/ports/428635 Log: Glide is a package manager for Go that is conceptually similar to package managers for other languages such as Cargo for Rust, NPM for Node.js, Pip for Python, Bundler for Ruby, and so forth. WWW: https://glide.sh/ Added: head/devel/go-glide/ head/devel/go-glide/Makefile (contents, props changed) head/devel/go-glide/distinfo (contents, props changed) head/devel/go-glide/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Dec 15 20:22:14 2016 (r428634) +++ head/devel/Makefile Thu Dec 15 21:45:07 2016 (r428635) @@ -749,6 +749,7 @@ SUBDIR += go-codec SUBDIR += go-faker SUBDIR += go-form + SUBDIR += go-glide SUBDIR += go-go.uuid SUBDIR += go-goregen SUBDIR += go-hashicorp-logutils Added: head/devel/go-glide/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-glide/Makefile Thu Dec 15 21:45:07 2016 (r428635) @@ -0,0 +1,21 @@ +# Created by: Carlo Strub +# $FreeBSD$ + +PORTNAME= glide +PORTVERSION= 0.12.3 +CATEGORIES= devel +PKGNAMEPREFIX= go- + +MAINTAINER= cs@FreeBSD.org +COMMENT= Package Management for Golang + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= Masterminds +GH_TAGNAME= v0.12.3 +USES= go +GO_PKGNAME= github.com/Masterminds/glide +PLIST_FILES= bin/glide + +.include Added: head/devel/go-glide/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-glide/distinfo Thu Dec 15 21:45:07 2016 (r428635) @@ -0,0 +1,3 @@ +TIMESTAMP = 1481837638 +SHA256 (Masterminds-glide-0.12.3-v0.12.3_GH0.tar.gz) = a304c29267cf7e00b7299b6ac8da0317f2f4f4096acb6cf817d4c745e0dee8b4 +SIZE (Masterminds-glide-0.12.3-v0.12.3_GH0.tar.gz) = 244609 Added: head/devel/go-glide/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-glide/pkg-descr Thu Dec 15 21:45:07 2016 (r428635) @@ -0,0 +1,5 @@ +Glide is a package manager for Go that is conceptually similar to package +managers for other languages such as Cargo for Rust, NPM for Node.js, Pip for +Python, Bundler for Ruby, and so forth. + +WWW: https://glide.sh/