Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Mar 2017 06:29:30 +0000 (UTC)
From:      Kirill Ponomarew <krion@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r435315 - in head/devel: . awless
Message-ID:  <201703030629.v236TUms015507@repo.freebsd.org>

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

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.
+
+===============================================================================



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