From owner-svn-ports-all@freebsd.org Fri Mar 3 06:29:32 2017 Return-Path: Delivered-To: svn-ports-all@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 2531ACF49E1; Fri, 3 Mar 2017 06:29:32 +0000 (UTC) (envelope-from krion@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 F40D11FB8; Fri, 3 Mar 2017 06:29:31 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v236TVqA015512; Fri, 3 Mar 2017 06:29:31 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v236TUms015507; Fri, 3 Mar 2017 06:29:30 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201703030629.v236TUms015507@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarew Date: Fri, 3 Mar 2017 06:29:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435315 - in head/devel: . awless X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Mar 2017 06:29:32 -0000 Author: krion Date: Fri Mar 3 06:29:30 2017 New Revision: 435315 URL: https://svnweb.freebsd.org/changeset/ports/435315 Log: New port: devel/awless awless is a fast, powerful and easy-to-use command line interface (CLI) to manage Amazon Web Services. It will help you - Run frequent actions by using simple commands - Easily explore your infrastructure and cloud resources via CLI - Ensure smart defaults & security best practices - Manage resources through robust runnable & scriptable templates - Explore, analyse and query your infrastructure offline - Explore, analyse and query your infrastructure through time WWW: https://github.com/wallix/awless PR: 217474 Submitted by: dg@syrec.org Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9868 Added: head/devel/awless/ head/devel/awless/Makefile (contents, props changed) head/devel/awless/distinfo (contents, props changed) head/devel/awless/pkg-descr (contents, props changed) head/devel/awless/pkg-message (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Mar 3 06:28:14 2017 (r435314) +++ head/devel/Makefile Fri Mar 3 06:29:30 2017 (r435315) @@ -156,6 +156,7 @@ SUBDIR += avro SUBDIR += avro-c SUBDIR += avro-cpp + SUBDIR += awless SUBDIR += aws-sdk-cpp SUBDIR += awscli SUBDIR += b2 Added: head/devel/awless/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/awless/Makefile Fri Mar 3 06:29:30 2017 (r435315) @@ -0,0 +1,31 @@ +# Created by: Dmitri Goutnik +# $FreeBSD$ + +PORTNAME= awless +PORTVERSION= 0.0.16 +CATEGORIES= devel + +MAINTAINER= dg@syrec.org +COMMENT= Fast, powerful and easy-to-use CLI for AWS + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= go:lang/go + +USE_GITHUB= yes +GH_ACCOUNT= wallix +GH_SUBDIR= src/github.com/wallix/${PORTNAME} + +PLIST_FILES= bin/awless +PORTDOCS= README.md + +do-build: + @(cd ${WRKSRC} && ${SETENV} GOPATH=${WRKSRC} go build -o ${PORTNAME} ) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include Added: head/devel/awless/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/awless/distinfo Fri Mar 3 06:29:30 2017 (r435315) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488402634 +SHA256 (wallix-awless-0.0.16_GH0.tar.gz) = e75967799392d3b8d1820b74b191ef8db605e301e3a7cc5b2b657d79f05e6075 +SIZE (wallix-awless-0.0.16_GH0.tar.gz) = 1901149 Added: head/devel/awless/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/awless/pkg-descr Fri Mar 3 06:29:30 2017 (r435315) @@ -0,0 +1,11 @@ +awless is a fast, powerful and easy-to-use command line interface (CLI) to +manage Amazon Web Services. It will help you + + - Run frequent actions by using simple commands + - Easily explore your infrastructure and cloud resources via CLI + - Ensure smart defaults & security best practices + - Manage resources through robust runnable & scriptable templates + - Explore, analyse and query your infrastructure offline + - Explore, analyse and query your infrastructure through time + +WWW: https://github.com/wallix/awless Added: head/devel/awless/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/awless/pkg-message Fri Mar 3 06:29:30 2017 (r435315) @@ -0,0 +1,9 @@ +=============================================================================== + +Setup your AWS account by exporting AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY +environment variables. + +If you have previously used aws CLI or aws-shell, your credentials will be +automatically loaded by awless from the ~/.aws/credentials folder. + +===============================================================================