From owner-svn-ports-head@freebsd.org Fri Aug 3 17:13:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 893EC106F1CF; Fri, 3 Aug 2018 17:13:50 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3B0938CD53; Fri, 3 Aug 2018 17:13:50 +0000 (UTC) (envelope-from danilo@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 1B51723583; Fri, 3 Aug 2018 17:13:50 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w73HDn4B065546; Fri, 3 Aug 2018 17:13:49 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w73HDn34065539; Fri, 3 Aug 2018 17:13:49 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201808031713.w73HDn34065539@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 3 Aug 2018 17:13:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476311 - in head/security: . aws-iam-authenticator X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: in head/security: . aws-iam-authenticator X-SVN-Commit-Revision: 476311 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.27 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: Fri, 03 Aug 2018 17:13:50 -0000 Author: danilo Date: Fri Aug 3 17:13:49 2018 New Revision: 476311 URL: https://svnweb.freebsd.org/changeset/ports/476311 Log: - New port: security/aws-iam-authenticator A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster. Added: head/security/aws-iam-authenticator/ head/security/aws-iam-authenticator/Makefile (contents, props changed) head/security/aws-iam-authenticator/distinfo (contents, props changed) head/security/aws-iam-authenticator/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri Aug 3 16:44:58 2018 (r476310) +++ head/security/Makefile Fri Aug 3 17:13:49 2018 (r476311) @@ -33,6 +33,7 @@ SUBDIR += authforce SUBDIR += autossh SUBDIR += avcheck + SUBDIR += aws-iam-authenticator SUBDIR += axTLS SUBDIR += barnyard2 SUBDIR += barnyard2-sguil Added: head/security/aws-iam-authenticator/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/aws-iam-authenticator/Makefile Fri Aug 3 17:13:49 2018 (r476311) @@ -0,0 +1,35 @@ +# Created by: Danilo Egea Gondolfo +# $FreeBSD$ + +PORTNAME= aws-iam-authenticator +PORTVERSION= 0.3.0 +DISTVERSIONPREFIX= v +CATEGORIES= security + +MAINTAINER= danilo@FreeBSD.org +COMMENT= Use AWS IAM credentials to authenticate to a Kubernetes cluster + +LICENSE= APACHE20 + +USES= go + +USE_GITHUB= yes +GH_ACCOUNT= kubernetes-sigs + +PLIST_FILES= bin/${PORTNAME} + +post-patch: + ${LN} -s ${WRKSRC}/vendor ${WRKSRC}/src + ${MKDIR} ${WRKSRC}/src/github.com/heptio/authenticator + ${LN} -s ${WRKSRC}/pkg ${WRKSRC}/src/github.com/heptio/authenticator/pkg + +do-build: + cd ${WRKSRC}/cmd/heptio-authenticator-aws && \ + GOPATH=${WRKSRC} go build + +do-install: + ${INSTALL_PROGRAM} \ + ${WRKSRC}/cmd/heptio-authenticator-aws/heptio-authenticator-aws \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/security/aws-iam-authenticator/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/aws-iam-authenticator/distinfo Fri Aug 3 17:13:49 2018 (r476311) @@ -0,0 +1,3 @@ +TIMESTAMP = 1533258476 +SHA256 (kubernetes-sigs-aws-iam-authenticator-v0.3.0_GH0.tar.gz) = 91e801c1b1c097f663ebd75897cd5ea19e709bc5ab806e1169ffc508c5a79271 +SIZE (kubernetes-sigs-aws-iam-authenticator-v0.3.0_GH0.tar.gz) = 19920237 Added: head/security/aws-iam-authenticator/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/aws-iam-authenticator/pkg-descr Fri Aug 3 17:13:49 2018 (r476311) @@ -0,0 +1,3 @@ +A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster. + +WWW: https://github.com/kubernetes-sigs/aws-iam-authenticator