From owner-svn-ports-all@FreeBSD.ORG Thu Mar 26 02:43:04 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 8522CCA7; Thu, 26 Mar 2015 02:43:04 +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 6582AB6F; Thu, 26 Mar 2015 02:43:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2Q2h4OE069032; Thu, 26 Mar 2015 02:43:04 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2Q2h3KE069024; Thu, 26 Mar 2015 02:43:03 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201503260243.t2Q2h3KE069024@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 26 Mar 2015 02:43:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382289 - in 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: Thu, 26 Mar 2015 02:43:04 -0000 Author: swills Date: Thu Mar 26 02:43:02 2015 New Revision: 382289 URL: https://svnweb.freebsd.org/changeset/ports/382289 QAT: https://qat.redports.org/buildarchive/r382289/ Log: textproc/consul-template: create port Generic template rendering and notifications with Consul Added: head/textproc/consul-template/ head/textproc/consul-template/Makefile (contents, props changed) head/textproc/consul-template/distinfo (contents, props changed) head/textproc/consul-template/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Mar 26 02:21:24 2015 (r382288) +++ head/textproc/Makefile Thu Mar 26 02:43:02 2015 (r382289) @@ -79,6 +79,7 @@ SUBDIR += colordiff SUBDIR += confetti SUBDIR += confget + SUBDIR += consul-template SUBDIR += crimson SUBDIR += cs-aspell SUBDIR += cs-mythes Added: head/textproc/consul-template/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/consul-template/Makefile Thu Mar 26 02:43:02 2015 (r382289) @@ -0,0 +1,54 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= consul-template +PORTVERSION= 0.3.1 +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 \ + 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 + +MAINTAINER= swills@FreeBSD.org +COMMENT= Generic template rendering and notifications with Consul + +BUILD_DEPENDS= ${LOCALBASE}/bin/go:${PORTSDIR}/lang/go + +USE_GITHUB= yes +GH_ACCOUNT= hashicorp +GH_COMMIT= e22fbf7 +GH_TAGNAME= v${PORTVERSION} + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +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 + @${MKDIR} ${WRKSRC}/src/github.com/mitchellh + @${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 + +do-build: + @cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC} go build + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/consul-template-${PORTVERSION} ${STAGEDIR}${PREFIX}/bin/consul-template + +.include Added: head/textproc/consul-template/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/consul-template/distinfo Thu Mar 26 02:43:02 2015 (r382289) @@ -0,0 +1,12 @@ +SHA256 (consul-template-0.3.1.tar.gz) = fc920c58e24913fac4d60c9108b40eaae47d4a7ad23e97dd16ddb36c76723cd9 +SIZE (consul-template-0.3.1.tar.gz) = 37745 +SHA256 (armon-consul-api-0e644b8.tar.gz) = 98ced8eb879ad2aec426e8821973e476ad76d5e91aa467362aaac98b7ae639b0 +SIZE (armon-consul-api-0e644b8.tar.gz) = 17558 +SHA256 (hashicorp-hcl-2c88e7e.tar.gz) = 2f3dc2241a1716b8e9c7bd331d8113b9b780a1233bf2dcf73bb77c68ebe17d0e +SIZE (hashicorp-hcl-2c88e7e.tar.gz) = 28350 +SHA256 (hashicorp-logutils-23b0af5.tar.gz) = 00187038a1bbf6ac3575e7630216903fdbbe6165dd4d4415023d030736994025 +SIZE (hashicorp-logutils-23b0af5.tar.gz) = 7691 +SHA256 (hashicorp-terraform-d87fa90.tar.gz) = 5657d8f9a596c94e86c72d50e8eedbb4da8942eed56e5317e6611a488c557d54 +SIZE (hashicorp-terraform-d87fa90.tar.gz) = 3245770 +SHA256 (mitchellh-mapstructure-740c764.tar.gz) = 5d140730c448532df9b1413fe03e752462a992d6ff2badcc5d2eb4bb9346a478 +SIZE (mitchellh-mapstructure-740c764.tar.gz) = 11949 Added: head/textproc/consul-template/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/consul-template/pkg-descr Thu Mar 26 02:43:02 2015 (r382289) @@ -0,0 +1,3 @@ +Generic template rendering and notifications with Consul + +WWW: https://github.com/hashicorp/consul-template