From owner-svn-ports-all@freebsd.org Sun Oct 2 15:38:06 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A97DAEFA6D; Sun, 2 Oct 2016 15:38:06 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 789E4A4; Sun, 2 Oct 2016 15:38:06 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u92Fc5Og030691; Sun, 2 Oct 2016 15:38:05 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u92Fc55O030686; Sun, 2 Oct 2016 15:38:05 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201610021538.u92Fc55O030686@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sun, 2 Oct 2016 15:38:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423129 - in head/devel: . elixir-libring 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.23 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: Sun, 02 Oct 2016 15:38:06 -0000 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 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