From owner-svn-ports-all@FreeBSD.ORG Mon Apr 6 00:47:35 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7360186; Mon, 6 Apr 2015 00:47:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 A9079677; Mon, 6 Apr 2015 00:47:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t360lZcn067555; Mon, 6 Apr 2015 00:47:35 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t360lZtW067552; Mon, 6 Apr 2015 00:47:35 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201504060047.t360lZtW067552@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 6 Apr 2015 00:47:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383401 - head/textproc/consul-template 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.18-1 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: Mon, 06 Apr 2015 00:47:36 -0000 Author: swills Date: Mon Apr 6 00:47:34 2015 New Revision: 383401 URL: https://svnweb.freebsd.org/changeset/ports/383401 Log: textproc/consul-template: 0.8.0 Modified: head/textproc/consul-template/Makefile head/textproc/consul-template/distinfo Modified: head/textproc/consul-template/Makefile ============================================================================== --- head/textproc/consul-template/Makefile Mon Apr 6 00:47:11 2015 (r383400) +++ head/textproc/consul-template/Makefile Mon Apr 6 00:47:34 2015 (r383401) @@ -2,20 +2,26 @@ # $FreeBSD$ PORTNAME= consul-template -PORTVERSION= 0.3.1 +PORTVERSION= 0.8.0 CATEGORIES= textproc MASTER_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/archive/${GH_TAGNAME}.tar.gz?dummy=/:group1 \ https://codeload.github.com/armon/consul-api/legacy.tar.gz/0e644b8?dummy=/:group2 \ https://codeload.github.com/hashicorp/hcl/legacy.tar.gz/2c88e7e?dummy=/:group3 \ https://codeload.github.com/hashicorp/logutils/legacy.tar.gz/23b0af5?dummy=/:group4 \ https://codeload.github.com/hashicorp/terraform/legacy.tar.gz/d87fa90?dummy=/:group5 \ - https://codeload.github.com/mitchellh/mapstructure/legacy.tar.gz/740c764?dummy=/:group6 -DISTFILES= consul-template-0.3.1.tar.gz:group1 \ + https://codeload.github.com/mitchellh/mapstructure/legacy.tar.gz/740c764?dummy=/:group6 \ + https://github.com/hashicorp/go-multierror/archive/fcdddc395df1ddf4247c69bd436e84cfa0733f7e.tar.gz?dummy=/:group7 \ + https://github.com/hashicorp/go-syslog/archive/42a2b573b664dbf281bd48c3cc12c086b17a39ba.tar.gz?dummy=/:group8 \ + https://github.com/hashicorp/consul/archive/v0.5.0.tar.gz?dummy=/:group9 +DISTFILES= consul-template-${PORTVERSION}.tar.gz:group1 \ armon-consul-api-0e644b8.tar.gz:group2 \ hashicorp-hcl-2c88e7e.tar.gz:group3 \ hashicorp-logutils-23b0af5.tar.gz:group4 \ hashicorp-terraform-d87fa90.tar.gz:group5 \ - mitchellh-mapstructure-740c764.tar.gz:group6 + mitchellh-mapstructure-740c764.tar.gz:group6 \ + hashicorp_go-multierror_fcdddc395df1ddf4247c69bd436e84cfa0733f7e.tar.gz:group7 \ + hashicorp_go-syslog_42a2b573b664dbf281bd48c3cc12c086b17a39ba.tar.gz:group8 \ + consul-v0.5.0.tar.gz:group9 MAINTAINER= swills@FreeBSD.org COMMENT= Generic template rendering and notifications with Consul @@ -24,7 +30,6 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/go:${POR USE_GITHUB= yes GH_ACCOUNT= hashicorp -GH_COMMIT= e22fbf7 GH_TAGNAME= v${PORTVERSION} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} @@ -34,16 +39,25 @@ PLIST_FILES= bin/consul-template STRIP= # stripping can break go binaries post-patch: - @${MKDIR} ${WRKSRC}/src/github.com/armon @${MKDIR} ${WRKSRC}/src/github.com/hashicorp/consul-template +.for src in CHANGELOG.md LICENSE Makefile README.md brain.go brain_test.go \ + cli.go cli_test.go config.go config_test.go dependency flags.go logging \ + main.go runner.go runner_test.go template.go template_functions.go \ + template_functions_test.go test template_test.go watch + @${CP} -r ${WRKSRC}/${src} \ + ${WRKSRC}/src/github.com/hashicorp/consul-template +.endfor + @${MKDIR} ${WRKSRC}/src/github.com/armon @${MKDIR} ${WRKSRC}/src/github.com/mitchellh + @${MKDIR} ${WRKSRC}/src/github.com/hashicorp @${MV} ${WRKDIR}/armon-consul-api-0e644b8 ${WRKSRC}/src/github.com/armon/consul-api @${MV} ${WRKDIR}/hashicorp-hcl-2c88e7e ${WRKSRC}/src/github.com/hashicorp/hcl @${MV} ${WRKDIR}/hashicorp-logutils-23b0af5 ${WRKSRC}/src/github.com/hashicorp/logutils @${MV} ${WRKDIR}/hashicorp-terraform-d87fa90 ${WRKSRC}/src/github.com/hashicorp/terraform @${MV} ${WRKDIR}/mitchellh-mapstructure-740c764 ${WRKSRC}/src/github.com/mitchellh/mapstructure - @${MV} ${WRKSRC}/util ${WRKSRC}/src/github.com/hashicorp/consul-template - @${MV} ${WRKSRC}/test ${WRKSRC}/src/github.com/hashicorp/consul-template + @${MV} ${WRKDIR}/go-multierror-fcdddc395df1ddf4247c69bd436e84cfa0733f7e ${WRKSRC}/src/github.com/hashicorp/go-multierror + @${MV} ${WRKDIR}/go-syslog-42a2b573b664dbf281bd48c3cc12c086b17a39ba ${WRKSRC}/src/github.com/hashicorp/go-syslog + @${MV} ${WRKDIR}/consul-0.5.0 ${WRKSRC}/src/github.com/hashicorp/consul do-build: @cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC} go build Modified: head/textproc/consul-template/distinfo ============================================================================== --- head/textproc/consul-template/distinfo Mon Apr 6 00:47:11 2015 (r383400) +++ head/textproc/consul-template/distinfo Mon Apr 6 00:47:34 2015 (r383401) @@ -1,5 +1,5 @@ -SHA256 (consul-template-0.3.1.tar.gz) = fc920c58e24913fac4d60c9108b40eaae47d4a7ad23e97dd16ddb36c76723cd9 -SIZE (consul-template-0.3.1.tar.gz) = 37745 +SHA256 (consul-template-0.8.0.tar.gz) = ac12bdde35e88184d5e3f2201c2f46e2dd7b301d4f31b51945905d1b2c456064 +SIZE (consul-template-0.8.0.tar.gz) = 63281 SHA256 (armon-consul-api-0e644b8.tar.gz) = 98ced8eb879ad2aec426e8821973e476ad76d5e91aa467362aaac98b7ae639b0 SIZE (armon-consul-api-0e644b8.tar.gz) = 17558 SHA256 (hashicorp-hcl-2c88e7e.tar.gz) = 2f3dc2241a1716b8e9c7bd331d8113b9b780a1233bf2dcf73bb77c68ebe17d0e @@ -10,3 +10,9 @@ SHA256 (hashicorp-terraform-d87fa90.tar. SIZE (hashicorp-terraform-d87fa90.tar.gz) = 3245770 SHA256 (mitchellh-mapstructure-740c764.tar.gz) = 5d140730c448532df9b1413fe03e752462a992d6ff2badcc5d2eb4bb9346a478 SIZE (mitchellh-mapstructure-740c764.tar.gz) = 11949 +SHA256 (hashicorp_go-multierror_fcdddc395df1ddf4247c69bd436e84cfa0733f7e.tar.gz) = af90f9be029c091eb011ff25d270772fdb51edf3c6396cf99f224c4e7ad724c3 +SIZE (hashicorp_go-multierror_fcdddc395df1ddf4247c69bd436e84cfa0733f7e.tar.gz) = 8058 +SHA256 (hashicorp_go-syslog_42a2b573b664dbf281bd48c3cc12c086b17a39ba.tar.gz) = 378f5249729661db9d0c65030fbf636f6ec1d60ee926e67abf8c6dd7921d3907 +SIZE (hashicorp_go-syslog_42a2b573b664dbf281bd48c3cc12c086b17a39ba.tar.gz) = 4397 +SHA256 (consul-v0.5.0.tar.gz) = 282f561c814fdb1f61106f3bb64b881c8eabc71f79f70f581509714e96f0449a +SIZE (consul-v0.5.0.tar.gz) = 1608079