Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Dec 2016 21:45:07 +0000 (UTC)
From:      Carlo Strub <cs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r428635 - in head/devel: . go-glide
Message-ID:  <201612152145.uBFLj7qE019026@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <cs@FreeBSD.org>
+# $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 <bsd.port.mk>

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/



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