Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Oct 2016 15:38:05 +0000 (UTC)
From:      Jimmy Olgeni <olgeni@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423129 - in head/devel: . elixir-libring
Message-ID:  <201610021538.u92Fc55O030686@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olgeni
Date: Sun Oct  2 15:38:05 2016
New Revision: 423129
URL: https://svnweb.freebsd.org/changeset/ports/423129

Log:
  Add devel/elixir-libring, a fast consistent hash ring implementation in Elixir.

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Oct  2 15:30:14 2016	(r423128)
+++ head/devel/Makefile	Sun Oct  2 15:38:05 2016	(r423129)
@@ -460,6 +460,7 @@
     SUBDIR += elixir-hex
     SUBDIR += elixir-inflex
     SUBDIR += elixir-lager_logger
+    SUBDIR += elixir-libring
     SUBDIR += elixir-math
     SUBDIR += elixir-msgpax
     SUBDIR += elixir-nadia

Added: head/devel/elixir-libring/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/elixir-libring/Makefile	Sun Oct  2 15:38:05 2016	(r423129)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	libring
+DISTVERSION=	1.0.0
+CATEGORIES=	devel
+PKGNAMEPREFIX=	elixir-
+
+MAINTAINER=	olgeni@FreeBSD.org
+COMMENT=	Fast consistent hash ring implementation in Elixir
+
+LICENSE=	MIT
+
+USES=		elixir
+USE_GITHUB=	yes
+GH_ACCOUNT=	bitwalker
+
+MIX_REWRITE=	yes
+
+.include <bsd.port.mk>

Added: head/devel/elixir-libring/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/elixir-libring/distinfo	Sun Oct  2 15:38:05 2016	(r423129)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1475422050
+SHA256 (bitwalker-libring-1.0.0_GH0.tar.gz) = 5d767f05b4fa5be25a497011a8a3a8b6cad61be76fc20110dfbbf06768e2771d
+SIZE (bitwalker-libring-1.0.0_GH0.tar.gz) = 10067

Added: head/devel/elixir-libring/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/elixir-libring/pkg-descr	Sun Oct  2 15:38:05 2016	(r423129)
@@ -0,0 +1,6 @@
+This library implements a stateful consistent hash ring. It's
+extremely fast (in benchmarks it's faster than all other implementations
+I've tested against, namely voicelayer/hash-ring and sile/hash_ring),
+it has no external dependencies, and is written in Elixir.
+
+WWW: https://github.com/bitwalker/libring

Added: head/devel/elixir-libring/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/elixir-libring/pkg-plist	Sun Oct  2 15:38:05 2016	(r423129)
@@ -0,0 +1,13 @@
+lib/elixir/lib/libring/ebin/Elixir.HashRing.App.beam
+lib/elixir/lib/libring/ebin/Elixir.HashRing.Managed.beam
+lib/elixir/lib/libring/ebin/Elixir.HashRing.Utils.beam
+lib/elixir/lib/libring/ebin/Elixir.HashRing.Worker.beam
+lib/elixir/lib/libring/ebin/Elixir.HashRing.beam
+lib/elixir/lib/libring/ebin/Elixir.Inspect.HashRing.beam
+lib/elixir/lib/libring/ebin/libring.app
+lib/elixir/lib/libring/lib/app.ex
+lib/elixir/lib/libring/lib/managed_ring.ex
+lib/elixir/lib/libring/lib/ring.ex
+lib/elixir/lib/libring/lib/utils.ex
+lib/elixir/lib/libring/lib/worker.ex
+%%PORTDOCS%%%%DOCSDIR%%/README.md



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