From owner-svn-ports-all@freebsd.org Fri Jul 10 11:42:07 2015 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 784A2995473; Fri, 10 Jul 2015 11:42:07 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 5A3D41A6A; Fri, 10 Jul 2015 11:42:07 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6ABg6wn022640; Fri, 10 Jul 2015 11:42:06 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6ABg4MP022630; Fri, 10 Jul 2015 11:42:04 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201507101142.t6ABg4MP022630@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 10 Jul 2015 11:42:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391701 - in head/devel: . erlang-clique erlang-clique/files 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.20 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: Fri, 10 Jul 2015 11:42:07 -0000 Author: olgeni Date: Fri Jul 10 11:42:03 2015 New Revision: 391701 URL: https://svnweb.freebsd.org/changeset/ports/391701 Log: Add devel/erlang-clique, a CLI Framework for Erlang. Added: head/devel/erlang-clique/ head/devel/erlang-clique/Makefile (contents, props changed) head/devel/erlang-clique/distinfo (contents, props changed) head/devel/erlang-clique/files/ head/devel/erlang-clique/files/patch-rebar.config (contents, props changed) head/devel/erlang-clique/pkg-descr (contents, props changed) head/devel/erlang-clique/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 10 11:34:08 2015 (r391700) +++ head/devel/Makefile Fri Jul 10 11:42:03 2015 (r391701) @@ -433,6 +433,7 @@ SUBDIR += eris SUBDIR += erlang-bbmustache SUBDIR += erlang-bear + SUBDIR += erlang-clique SUBDIR += erlang-common_lib SUBDIR += erlang-cuttlefish SUBDIR += erlang-erlware_commons Added: head/devel/erlang-clique/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/erlang-clique/Makefile Fri Jul 10 11:42:03 2015 (r391701) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= clique +PORTVERSION= 0.3.1 +CATEGORIES= devel +PKGNAMEPREFIX= erlang- + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= CLI Framework for Erlang + +LICENSE= APACHE20 + +USES= erlang:rebar +USE_GITHUB= yes +GH_ACCOUNT= basho + +ERL_BUILD_DEPS= devel/erlang-cuttlefish +ERL_RUN_DEPS:= ${ERL_BUILD_DEPS} + +.include Added: head/devel/erlang-clique/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/erlang-clique/distinfo Fri Jul 10 11:42:03 2015 (r391701) @@ -0,0 +1,2 @@ +SHA256 (basho-clique-0.3.1_GH0.tar.gz) = 00cd340d6fcceb7b94d1169367af1f0e4cac5aeb54572aa356eb3a75fbfcf684 +SIZE (basho-clique-0.3.1_GH0.tar.gz) = 179125 Added: head/devel/erlang-clique/files/patch-rebar.config ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/erlang-clique/files/patch-rebar.config Fri Jul 10 11:42:03 2015 (r391701) @@ -0,0 +1,8 @@ +--- rebar.config.orig 2015-07-10 11:37:24 UTC ++++ rebar.config +@@ -12,5 +12,4 @@ + ]}. + + {deps, [ +- {cuttlefish, ".*", {git, "git://github.com/basho/cuttlefish.git", {branch, "develop"}}} + ]}. Added: head/devel/erlang-clique/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/erlang-clique/pkg-descr Fri Jul 10 11:42:03 2015 (r391701) @@ -0,0 +1,6 @@ +Clique is an opinionated framework for building command line +interfaces in Erlang. It provides users with an interface that gives +them enough power to build complex CLIs, but enough constraint to +make them appear consistent. + +WWW: https://github.com/basho/clique Added: head/devel/erlang-clique/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/erlang-clique/pkg-plist Fri Jul 10 11:42:03 2015 (r391701) @@ -0,0 +1,45 @@ +lib/erlang/lib/clique-%%VERSION%%/ebin/clique.app +lib/erlang/lib/clique-%%VERSION%%/ebin/clique.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_app.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_command.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_config.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_csv_writer.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_error.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_handler.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_human_writer.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_json_writer.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_manager.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_nodes.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_parser.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_spec.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_status.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_sup.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_table.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_test_group_leader.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_typecast.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_usage.beam +lib/erlang/lib/clique-%%VERSION%%/ebin/clique_writer.beam +lib/erlang/lib/clique-%%VERSION%%/include/clique_specs.hrl +lib/erlang/lib/clique-%%VERSION%%/include/clique_status_types.hrl +lib/erlang/lib/clique-%%VERSION%%/src/clique.app.src +lib/erlang/lib/clique-%%VERSION%%/src/clique.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_app.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_command.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_config.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_csv_writer.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_error.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_handler.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_human_writer.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_json_writer.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_manager.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_nodes.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_parser.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_spec.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_status.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_sup.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_table.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_test_group_leader.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_typecast.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_usage.erl +lib/erlang/lib/clique-%%VERSION%%/src/clique_writer.erl +%%PORTDOCS%%%%DOCSDIR%%/README.md