Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Jan 2016 09:15:33 +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: r406895 - in head/devel: . erlang-backoff
Message-ID:  <201601220915.u0M9FXYY098412@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olgeni
Date: Fri Jan 22 09:15:33 2016
New Revision: 406895
URL: https://svnweb.freebsd.org/changeset/ports/406895

Log:
  Add devel/erlang-backoff, a library for handling exponential backoffs in Erlang.

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Jan 22 09:12:14 2016	(r406894)
+++ head/devel/Makefile	Fri Jan 22 09:15:33 2016	(r406895)
@@ -467,6 +467,7 @@
     SUBDIR += eric4
     SUBDIR += eric6
     SUBDIR += eris
+    SUBDIR += erlang-backoff
     SUBDIR += erlang-bbmustache
     SUBDIR += erlang-bear
     SUBDIR += erlang-certifi

Added: head/devel/erlang-backoff/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/erlang-backoff/Makefile	Fri Jan 22 09:15:33 2016	(r406895)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME=	backoff
+PORTVERSION=	1.1.3
+CATEGORIES=	devel
+PKGNAMEPREFIX=	erlang-
+
+MAINTAINER=	olgeni@FreeBSD.org
+COMMENT=	Simple exponential backoffs in Erlang
+
+LICENSE=	MIT
+
+USES=		erlang:rebar3
+USE_GITHUB=	yes
+GH_ACCOUNT=	ferd
+
+.include <bsd.port.mk>

Added: head/devel/erlang-backoff/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/erlang-backoff/distinfo	Fri Jan 22 09:15:33 2016	(r406895)
@@ -0,0 +1,2 @@
+SHA256 (ferd-backoff-1.1.3_GH0.tar.gz) = 73f58608eddc9e4259da8fae32575b10a5582a222dbf6b1b501f9c14d2f4cd23
+SIZE (ferd-backoff-1.1.3_GH0.tar.gz) = 6650

Added: head/devel/erlang-backoff/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/erlang-backoff/pkg-descr	Fri Jan 22 09:15:33 2016	(r406895)
@@ -0,0 +1,5 @@
+Backoff is an Erlang library to deal with exponential backoffs and
+timers to be used within OTP processes when dealing with cyclical
+events, such as reconnections, or generally retrying things.
+
+WWW: https://github.com/ferd/backoff

Added: head/devel/erlang-backoff/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/erlang-backoff/pkg-plist	Fri Jan 22 09:15:33 2016	(r406895)
@@ -0,0 +1,5 @@
+lib/erlang/lib/backoff-%%VERSION%%/ebin/backoff.app
+lib/erlang/lib/backoff-%%VERSION%%/ebin/backoff.beam
+lib/erlang/lib/backoff-%%VERSION%%/src/backoff.app.src
+lib/erlang/lib/backoff-%%VERSION%%/src/backoff.erl
+%%PORTDOCS%%%%DOCSDIR%%/README.md



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