From owner-svn-ports-head@freebsd.org Thu Jun 4 18:56:21 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 B859232CF53; Thu, 4 Jun 2020 18:56:21 +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 49dFP14YkQz4YfK; Thu, 4 Jun 2020 18:56:21 +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 938392438F; Thu, 4 Jun 2020 18:56:21 +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 054IuLPu010800; Thu, 4 Jun 2020 18:56:21 GMT (envelope-from egypcio@FreeBSD.org) Received: (from egypcio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 054IuKuQ010793; Thu, 4 Jun 2020 18:56:20 GMT (envelope-from egypcio@FreeBSD.org) Message-Id: <202006041856.054IuKuQ010793@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, 4 Jun 2020 18:56:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r537929 - in head/sysutils: . terraform-provider-gridscale X-SVN-Group: ports-head X-SVN-Commit-Author: egypcio X-SVN-Commit-Paths: in head/sysutils: . terraform-provider-gridscale X-SVN-Commit-Revision: 537929 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, 04 Jun 2020 18:56:21 -0000 Author: egypcio Date: Thu Jun 4 18:56:20 2020 New Revision: 537929 URL: https://svnweb.freebsd.org/changeset/ports/537929 Log: [NEW] sysutils/terraform-provider-gridscale: Terraform provider for gridscale Community developed provider to support gridscale's cloud with Terraform. Terraform is used to create, manage, and update infrastructure resources such as physical machines, VMs, network switches, containers, and more. A provider is responsible for understanding API interactions and exposing resources. Providers generally are an IaaS, PaaS, or SaaS services. WWW: https://github.com/terraform-providers/terraform-provider-gridscale Added: head/sysutils/terraform-provider-gridscale/ head/sysutils/terraform-provider-gridscale/Makefile (contents, props changed) head/sysutils/terraform-provider-gridscale/distinfo (contents, props changed) head/sysutils/terraform-provider-gridscale/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Jun 4 18:36:53 2020 (r537928) +++ head/sysutils/Makefile Thu Jun 4 18:56:20 2020 (r537929) @@ -1266,6 +1266,7 @@ SUBDIR += tealdeer SUBDIR += tenshi SUBDIR += terraform + SUBDIR += terraform-provider-gridscale SUBDIR += terraform-provider-vultr SUBDIR += testdisk SUBDIR += thefish Added: head/sysutils/terraform-provider-gridscale/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/terraform-provider-gridscale/Makefile Thu Jun 4 18:56:20 2020 (r537929) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= terraform-provider-gridscale +PORTVERSION= 1.6.0 +DISTVERSIONPREFIX= v +CATEGORIES= sysutils + +MAINTAINER= egypcio@FreeBSD.org +COMMENT= Terraform provider for gridscale + +LICENSE= MPL20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= terraform:sysutils/terraform + +USES= go:modules +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} +USE_GITHUB= yes +GH_ACCOUNT= terraform-providers + +PLIST_FILES= bin/${PORTNAME} + +.include Added: head/sysutils/terraform-provider-gridscale/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/terraform-provider-gridscale/distinfo Thu Jun 4 18:56:20 2020 (r537929) @@ -0,0 +1,3 @@ +TIMESTAMP = 1591289717 +SHA256 (terraform-providers-terraform-provider-gridscale-v1.6.0_GH0.tar.gz) = 86db28e2b5c18a3a9aa8209bd396a5980b8fe25971e07bab2361f346a8104be2 +SIZE (terraform-providers-terraform-provider-gridscale-v1.6.0_GH0.tar.gz) = 4611834 Added: head/sysutils/terraform-provider-gridscale/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/terraform-provider-gridscale/pkg-descr Thu Jun 4 18:56:20 2020 (r537929) @@ -0,0 +1,10 @@ +A community developed provider to support gridscale's cloud with Terraform. + +Terraform is used to create, manage, and update infrastructure resources such as +physical machines, VMs, network switches, containers, and more. +Almost any infrastructure type can be represented as a resource in Terraform. + +A provider is responsible for understanding API interactions and exposing +resources. Providers generally are an IaaS, PaaS, or SaaS services. + +WWW: https://github.com/terraform-providers/terraform-provider-gridscale