Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Aug 2015 08:26:47 +0000 (UTC)
From:      TAKATSU Tomonari <tota@FreeBSD.org>
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
Message-ID:  <201508090826.t798QlmG014978@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <tota@FreeBSD.org>
+# $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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508090826.t798QlmG014978>