Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Oct 2013 11:09:38 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329287 - in head/devel: . etcd
Message-ID:  <201310041109.r94B9cYg076762@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Fri Oct  4 11:09:38 2013
New Revision: 329287
URL: http://svnweb.freebsd.org/changeset/ports/329287

Log:
  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
  
  Use PKGNAMEPREFIX=coreos to avoid PKGNAME conflict with audio/etcd
  
  PR:		ports/182419
  Submitted by:	Bartek Rutkowski <ports@robakdesign.com>

Added:
  head/devel/etcd/
  head/devel/etcd/Makefile   (contents, props changed)
  head/devel/etcd/distinfo   (contents, props changed)
  head/devel/etcd/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Oct  4 10:40:52 2013	(r329286)
+++ head/devel/Makefile	Fri Oct  4 11:09:38 2013	(r329287)
@@ -410,6 +410,7 @@
     SUBDIR += eric4
     SUBDIR += eris
     SUBDIR += esdl
+    SUBDIR += etcd
     SUBDIR += etl
     SUBDIR += eventxx
     SUBDIR += evolution-gconf-tools

Added: head/devel/etcd/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/etcd/Makefile	Fri Oct  4 11:09:38 2013	(r329287)
@@ -0,0 +1,39 @@
+# $FreeBSD$
+
+PORTNAME=	etcd
+PORTVERSION=	0.1.1
+CATEGORIES=	devel
+PKGNAMEPREFIX=	coreos
+
+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 <bsd.port.mk>

Added: head/devel/etcd/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/etcd/distinfo	Fri Oct  4 11:09:38 2013	(r329287)
@@ -0,0 +1,2 @@
+SHA256 (etcd-0.1.1.tar.gz) = 337f173b165360889586a7388f5874bf0b16746992f3cd43ed162f39cd30e9ff
+SIZE (etcd-0.1.1.tar.gz) = 601641

Added: head/devel/etcd/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/etcd/pkg-descr	Fri Oct  4 11:09:38 2013	(r329287)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310041109.r94B9cYg076762>