From owner-svn-ports-head@freebsd.org Tue Oct 4 17:59:15 2016 Return-Path: Delivered-To: svn-ports-head@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 6D42FAF5EDA; Tue, 4 Oct 2016 17:59:15 +0000 (UTC) (envelope-from pi@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 2F5226C5; Tue, 4 Oct 2016 17:59:15 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u94HxElf082604; Tue, 4 Oct 2016 17:59:14 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u94HxE5m082602; Tue, 4 Oct 2016 17:59:14 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201610041759.u94HxE5m082602@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 4 Oct 2016 17:59:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423286 - head/dns/cli53 X-SVN-Group: ports-head 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.23 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: Tue, 04 Oct 2016 17:59:15 -0000 Author: pi Date: Tue Oct 4 17:59:13 2016 New Revision: 423286 URL: https://svnweb.freebsd.org/changeset/ports/423286 Log: dns/cli53: 0.4.4 -> 0.8.5 - Now written in go, no longer in python PR: 212625 Changes: https://github.com/barnybug/cli53/blob/master/CHANGELOG.md Submitted by: Koichiro IWAO Approved by: zi (maintainer timeout) Modified: head/dns/cli53/Makefile head/dns/cli53/distinfo head/dns/cli53/pkg-message Modified: head/dns/cli53/Makefile ============================================================================== --- head/dns/cli53/Makefile Tue Oct 4 17:32:58 2016 (r423285) +++ head/dns/cli53/Makefile Tue Oct 4 17:59:13 2016 (r423286) @@ -2,19 +2,26 @@ # $FreeBSD$ PORTNAME= cli53 -PORTVERSION= 0.4.4 +PORTVERSION= 0.8.5 CATEGORIES= dns MAINTAINER= zi@FreeBSD.org COMMENT= Command line management of Route53 domains -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto>0:devel/py-boto \ - ${PYTHON_PKGNAMEPREFIX}argparse>0:devel/py-argparse \ - ${PYTHON_PKGNAMEPREFIX}dnspython>0:dns/py-dnspython +LICENSE= MIT -USES= python -USE_PYTHON= distutils autoplist +BUILD_DEPENDS= go>=1.5:lang/go + +USES= go USE_GITHUB= yes GH_ACCOUNT= barnybug +WRKSRC_SUBDIR= cmd/cli53 +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME}/cmd/cli53 +PLIST_FILES= bin/cli53 + +post-extract: + @${MKDIR} ${GO_WRKSRC:H:H:H} + @${LN} -sf ${WRKSRC:H:H} ${GO_WRKSRC:H:H} + .include Modified: head/dns/cli53/distinfo ============================================================================== --- head/dns/cli53/distinfo Tue Oct 4 17:32:58 2016 (r423285) +++ head/dns/cli53/distinfo Tue Oct 4 17:59:13 2016 (r423286) @@ -1,2 +1,3 @@ -SHA256 (barnybug-cli53-0.4.4_GH0.tar.gz) = a6aff40f917febadd467e754b755d0cfa94e6329b7eee9ffb4df0c132fc1a5af -SIZE (barnybug-cli53-0.4.4_GH0.tar.gz) = 15868 +TIMESTAMP = 1475566013 +SHA256 (barnybug-cli53-0.8.5_GH0.tar.gz) = 4da0c3210ce86768d9be50be94c65c17bdfc4c2af980d04939e404f87ce006fe +SIZE (barnybug-cli53-0.8.5_GH0.tar.gz) = 4369719 Modified: head/dns/cli53/pkg-message ============================================================================== --- head/dns/cli53/pkg-message Tue Oct 4 17:32:58 2016 (r423285) +++ head/dns/cli53/pkg-message Tue Oct 4 17:59:13 2016 (r423286) @@ -1,13 +1,19 @@ Please configure your AWS credentials, either through environment variables or -~/.boto config file. +~/.aws/credentials config file. For example: export AWS_ACCESS_KEY_ID=XXXXXXXXXXXXXX export AWS_SECRET_ACCESS_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXX -or in ~/.boto (make sure you chmod 600 ~/.boto): +or in ~/.aws/credentials (make sure you chmod 600 ~/.aws/credentials): -[Credentials] -aws_access_key_id = XXXXXXXXXXXXXX -aws_secret_access_key = XXXXXXXXXXXXXXXXXXXXXXXXXXXXX +[default] +aws_access_key_id = AKID1234567890 +aws_secret_access_key = MY-SECRET-KEY + +You can switch between different sets in the credentials file by passing +--profile to any command, or setting the environment variable AWS_PROFILE. + +For example: + cli53 list --profile my_profile