From owner-svn-ports-head@freebsd.org Thu May 21 20:26:38 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0348A2F3E2A; Thu, 21 May 2020 20:26:38 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49Sh3d6GJkz4GkF; Thu, 21 May 2020 20:26:37 +0000 (UTC) (envelope-from egypcio@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 CD8BB12CEC; Thu, 21 May 2020 20:26:37 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04LKQbPp052098; Thu, 21 May 2020 20:26:37 GMT (envelope-from egypcio@FreeBSD.org) Received: (from egypcio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04LKQbH5052094; Thu, 21 May 2020 20:26:37 GMT (envelope-from egypcio@FreeBSD.org) Message-Id: <202005212026.04LKQbH5052094@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: egypcio set sender to egypcio@FreeBSD.org using -f From: =?UTF-8?Q?Vin=c3=adcius_Zavam?= Date: Thu, 21 May 2020 20:26:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r536149 - in head/net: . gscloud X-SVN-Group: ports-head X-SVN-Commit-Author: egypcio X-SVN-Commit-Paths: in head/net: . gscloud X-SVN-Commit-Revision: 536149 X-SVN-Commit-Repository: ports 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.33 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, 21 May 2020 20:26:38 -0000 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 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