Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 May 2020 20:26:37 +0000 (UTC)
From:      =?UTF-8?Q?Vin=c3=adcius_Zavam?= <egypcio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r536149 - in head/net: . gscloud
Message-ID:  <202005212026.04LKQbH5052094@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: egypcio
Date: Thu May 21 20:26:36 2020
New Revision: 536149
URL: https://svnweb.freebsd.org/changeset/ports/536149

Log:
  [NEW] net/gscloud: Official CLI to use gridscale's API, written in Go
  
    * Currently supports controlling Kubernetes (k8s) services
  
    WWW: https://github.com/gridscale/gscloud

Added:
  head/net/gscloud/
  head/net/gscloud/Makefile   (contents, props changed)
  head/net/gscloud/distinfo   (contents, props changed)
  head/net/gscloud/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Thu May 21 20:15:05 2020	(r536148)
+++ head/net/Makefile	Thu May 21 20:26:36 2020	(r536149)
@@ -214,6 +214,7 @@
     SUBDIR += grpcui
     SUBDIR += grpcurl
     SUBDIR += grsync
+    SUBDIR += gscloud
     SUBDIR += gsk
     SUBDIR += gspoof
     SUBDIR += gssdp

Added: head/net/gscloud/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/gscloud/Makefile	Thu May 21 20:26:36 2020	(r536149)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	gscloud
+DISTVERSION=	g20200504
+CATEGORIES=	net devel
+
+MAINTAINER=	egypcio@FreeBSD.org
+COMMENT=	Official command-line interface for gridscale's API written in Go
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		go:modules
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	gridscale
+GH_TAGNAME=	3705cba
+
+GO_PKGNAME=	github.com/gridscale/gscloud/cmd
+GO_TARGET=	.
+
+PLIST_FILES=	bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/net/gscloud/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/gscloud/distinfo	Thu May 21 20:26:36 2020	(r536149)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1590004573
+SHA256 (gridscale-gscloud-g20200504-3705cba_GH0.tar.gz) = b95a30a367b5a3e5026f2201b1996df1e2f0ba25db805a2a71f732302cf48a31
+SIZE (gridscale-gscloud-g20200504-3705cba_GH0.tar.gz) = 2948241

Added: head/net/gscloud/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/gscloud/pkg-descr	Thu May 21 20:26:36 2020	(r536149)
@@ -0,0 +1,4 @@
+The official command-line interface for the gridscale API. Currently it has
+support to control Kubernetes (k8s) services.
+
+WWW: https://github.com/gridscale/gscloud



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