# svn status A . A Makefile A distinfo A pkg-descr Index: Makefile =================================================================== --- Makefile (revision 0) +++ Makefile (working copy) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= etcd +PORTVERSION= 0.1.1 +CATEGORIES= devel + +MAINTAINER= ports@robakdesign.com +COMMENT= Highly-available key value store and service discovery + +BUILD_DEPENDS= ${LOCALBASE}/bin/go:${PORTSDIR}/lang/go + +USE_GITHUB= yes +GH_ACCOUNT= coreos +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 7b28904 + +PLIST_FILES+= bin/${PORTNAME} + +PORTDOCS= README.md + +NO_BUILD= yes + +OPTIONS_DEFINE= DOCS + +post-patch: + @${REINPLACE_CMD} -e 's|$$VER|${DISTVERSION}|' ${WRKSRC}/scripts/release-version + @${REINPLACE_CMD} -e '/VER=/d' ${WRKSRC}/scripts/release-version + @${REINPLACE_CMD} -e 's|#!/bin/bash|#!/bin/sh|' ${WRKSRC}/build + +pre-install: + @(cd ${WRKSRC}; ${SH} build) + +do-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + +.include Property changes on: Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: distinfo =================================================================== --- distinfo (revision 0) +++ distinfo (working copy) @@ -0,0 +1,2 @@ +SHA256 (etcd-0.1.1.tar.gz) = 337f173b165360889586a7388f5874bf0b16746992f3cd43ed162f39cd30e9ff +SIZE (etcd-0.1.1.tar.gz) = 601641 Property changes on: distinfo ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: pkg-descr =================================================================== --- pkg-descr (revision 0) +++ pkg-descr (working copy) @@ -0,0 +1,13 @@ +A highly-available key value store for shared +configuration and service discovery. etcd is +inspired by zookeeper and doozer, with a focus on: + +* Simple: curl'able user facing API (HTTP+JSON) +* Secure: optional SSL client cert authentication +* Fast: benchmarked 1000s of writes/s per instance +* Reliable: Properly distributed using Raft + +Etcd is written in Go and uses the raft consensus +algorithm to manage a highly-available replicated log. + +WWW: https://github.com/coreos/etcd#etcd Property changes on: pkg-descr ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property