svn commit: r406895 - in head/devel: . erlang-backoff

Jimmy Olgeni olgeni at FreeBSD.org
Fri Jan 22 09:15:35 UTC 2016


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 at 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


More information about the svn-ports-head mailing list