From owner-svn-ports-head@freebsd.org Fri Jan 22 09:15:35 2016 Return-Path: Delivered-To: svn-ports-head@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 29AC2A8A448; Fri, 22 Jan 2016 09:15:35 +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 E2FA91D37; Fri, 22 Jan 2016 09:15:34 +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 u0M9FXuN098417; Fri, 22 Jan 2016 09:15:33 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0M9FXYY098412; Fri, 22 Jan 2016 09:15:33 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201601220915.u0M9FXYY098412@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 22 Jan 2016 09:15:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406895 - in head/devel: . erlang-backoff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jan 2016 09:15:35 -0000 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 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