From owner-svn-ports-all@freebsd.org Wed Jul 20 11:09:11 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 42A19B9A37E; Wed, 20 Jul 2016 11:09:11 +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 06DAA16DA; Wed, 20 Jul 2016 11:09:10 +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 u6KB9A0k079468; Wed, 20 Jul 2016 11:09:10 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6KB99eF079463; Wed, 20 Jul 2016 11:09:09 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201607201109.u6KB99eF079463@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 20 Jul 2016 11:09:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418830 - in head/devel: . elixir-nimble_csv 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.22 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: Wed, 20 Jul 2016 11:09:11 -0000 Author: olgeni Date: Wed Jul 20 11:09:09 2016 New Revision: 418830 URL: https://svnweb.freebsd.org/changeset/ports/418830 Log: Add devel/elixir-nimble_csv, a simple and fast CSV parsing and dumping library for Elixir. Added: head/devel/elixir-nimble_csv/ head/devel/elixir-nimble_csv/Makefile (contents, props changed) head/devel/elixir-nimble_csv/distinfo (contents, props changed) head/devel/elixir-nimble_csv/pkg-descr (contents, props changed) head/devel/elixir-nimble_csv/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jul 20 09:33:31 2016 (r418829) +++ head/devel/Makefile Wed Jul 20 11:09:09 2016 (r418830) @@ -454,6 +454,7 @@ SUBDIR += elixir-lager_logger SUBDIR += elixir-msgpax SUBDIR += elixir-nadia + SUBDIR += elixir-nimble_csv SUBDIR += elixir-paratize SUBDIR += elixir-plug SUBDIR += elixir-poison Added: head/devel/elixir-nimble_csv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/elixir-nimble_csv/Makefile Wed Jul 20 11:09:09 2016 (r418830) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= nimble_csv +PORTVERSION= 0.1.0 +DISTVERSIONPREFIX= v +CATEGORIES= devel +PKGNAMEPREFIX= elixir- + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= CSV parsing and dumping library for Elixir + +LICENSE= APACHE20 + +USES= elixir +USE_GITHUB= yes +GH_ACCOUNT= plataformatec + +MIX_REWRITE= yes + +.include Added: head/devel/elixir-nimble_csv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/elixir-nimble_csv/distinfo Wed Jul 20 11:09:09 2016 (r418830) @@ -0,0 +1,3 @@ +TIMESTAMP = 1469007729 +SHA256 (plataformatec-nimble_csv-v0.1.0_GH0.tar.gz) = cf3fb18786dac4ca5c805b307dfdfc5557eb04ec14269d8fd7242f0d26c742ac +SIZE (plataformatec-nimble_csv-v0.1.0_GH0.tar.gz) = 5257 Added: head/devel/elixir-nimble_csv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/elixir-nimble_csv/pkg-descr Wed Jul 20 11:09:09 2016 (r418830) @@ -0,0 +1,3 @@ +A simple and fast CSV parsing and dumping library for Elixir. + +WWW: https://github.com/plataformatec/nimble_csv Added: head/devel/elixir-nimble_csv/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/elixir-nimble_csv/pkg-plist Wed Jul 20 11:09:09 2016 (r418830) @@ -0,0 +1,6 @@ +lib/elixir/lib/nimble_csv/ebin/Elixir.NimbleCSV.ParseError.beam +lib/elixir/lib/nimble_csv/ebin/Elixir.NimbleCSV.RFC4180.beam +lib/elixir/lib/nimble_csv/ebin/Elixir.NimbleCSV.beam +lib/elixir/lib/nimble_csv/ebin/nimble_csv.app +lib/elixir/lib/nimble_csv/lib/nimble_csv.ex +%%PORTDOCS%%%%DOCSDIR%%/README.md