From owner-svn-ports-head@freebsd.org Sun Aug 9 08:26:48 2015 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 CECDA99D60D; Sun, 9 Aug 2015 08:26:48 +0000 (UTC) (envelope-from tota@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 BA7AB81C; Sun, 9 Aug 2015 08:26:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t798Qmub014986; Sun, 9 Aug 2015 08:26:48 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t798QlmG014978; Sun, 9 Aug 2015 08:26:47 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508090826.t798QlmG014978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 9 Aug 2015 08:26:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393767 - in head/converters: . R-cran-jsonlite 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: Sun, 09 Aug 2015 08:26:49 -0000 Author: tota Date: Sun Aug 9 08:26:46 2015 New Revision: 393767 URL: https://svnweb.freebsd.org/changeset/ports/393767 Log: - Add new port: converters/R-cran-jsonlite A fast JSON parser and generator optimized for statistical data and the web. Started out as a fork of RJSONIO, but has been completely rewritten in recent versions. The package offers flexible, robust, high performance tools for working with JSON in R and is particularly powerful for building pipelines and interacting with web APIs. The implementation is based on the mapping described in the vignette of the package (Ooms, 2014). In addition to drop-in replacements for toJSON and fromJSON, jsonlite contains functions to stream, validate, and prettify JSON data. The unit tests included with the package verify that all edge cases are encoded and decoded consistently for use with dynamic data in systems and applications. WWW: https://cran.r-project.org/web/packages/jsonlite/ Added: head/converters/R-cran-jsonlite/ head/converters/R-cran-jsonlite/Makefile (contents, props changed) head/converters/R-cran-jsonlite/distinfo (contents, props changed) head/converters/R-cran-jsonlite/pkg-descr (contents, props changed) Modified: head/converters/Makefile Modified: head/converters/Makefile ============================================================================== --- head/converters/Makefile Sun Aug 9 08:06:43 2015 (r393766) +++ head/converters/Makefile Sun Aug 9 08:26:46 2015 (r393767) @@ -4,6 +4,7 @@ COMMENT = Character code converters SUBDIR += R-cran-RJSONIO + SUBDIR += R-cran-jsonlite SUBDIR += R-cran-rjson SUBDIR += aish SUBDIR += ascii2binary Added: head/converters/R-cran-jsonlite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/R-cran-jsonlite/Makefile Sun Aug 9 08:26:46 2015 (r393767) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= jsonlite +PORTVERSION= 0.9.16 +CATEGORIES= converters +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Robust, High Performance JSON Parser and Generator for R + +LICENSE= MIT + +USES= cran:auto-plist + +.include Added: head/converters/R-cran-jsonlite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/R-cran-jsonlite/distinfo Sun Aug 9 08:26:46 2015 (r393767) @@ -0,0 +1,2 @@ +SHA256 (jsonlite_0.9.16.tar.gz) = d517dc7993c920298030978b65d38cfb411b37fb29faa246e3c859a893cc908b +SIZE (jsonlite_0.9.16.tar.gz) = 955572 Added: head/converters/R-cran-jsonlite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/R-cran-jsonlite/pkg-descr Sun Aug 9 08:26:46 2015 (r393767) @@ -0,0 +1,13 @@ +A fast JSON parser and generator optimized for statistical data and +the web. Started out as a fork of RJSONIO, but has been completely +rewritten in recent versions. The package offers flexible, robust, +high performance tools for working with JSON in R and is particularly +powerful for building pipelines and interacting with web APIs. The +implementation is based on the mapping described in the vignette +of the package (Ooms, 2014). In addition to drop-in replacements +for toJSON and fromJSON, jsonlite contains functions to stream, +validate, and prettify JSON data. The unit tests included with the +package verify that all edge cases are encoded and decoded consistently +for use with dynamic data in systems and applications. + +WWW: https://cran.r-project.org/web/packages/jsonlite/