- Add a new port: converters/R-cran-RJSONIO

This is a package that allows conversion to and from data in
  Javascript object notation (JSON) format. This allows R objects to
  be inserted into Javascript/ECMAScript/ActionScript code and allows
  R programmers to read and convert JSON content to R objects. This
  is an alternative to rjson package. That version was too slow for
  converting large R objects to JSON and is not extensible, but a
  very useful prototype. It is fast for parsing. This package uses
  methods, vectorized operations and C code and callbacks to R functions
  for deserializing JSON objects to R. Verison 0.4 of this package
  uses a new native parser, implements the transformation code in C
  and allocates memory efficiently (rather than concatenating because
  of event driven parsing). The result is a significantly faster
  parsing of large JSON documents.

  WWW:	http://cran.r-project.org/web/packages/RJSONIO/
This commit is contained in:
TAKATSU Tomonari 2011-09-04 12:53:56 +00:00
parent 8e1f241ac9
commit 4be992e88c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=281149
4 changed files with 40 additions and 0 deletions

View File

@ -3,6 +3,7 @@
COMMENT = Character code converters
SUBDIR += R-cran-RJSONIO
SUBDIR += aish
SUBDIR += ascii2binary
SUBDIR += asr10

View File

@ -0,0 +1,22 @@
# New ports collection makefile for: R-cran-RJSONIO
# Date created: 2011-09-03
# Whom: TAKATSU Tomonari <tota@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= RJSONIO
DISTVERSION= 0.94-0
CATEGORIES= converters
PKGNAMEPREFIX= R-cran-
DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= tota@FreeBSD.org
COMMENT= Serialize R objects to JSON, JavaScript Object Notation
LICENSE= BSD
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (RJSONIO_0.94-0.tar.gz) = fd915b43e44d4bde7750336c9320e85edd8cbb8df30dc21590b5fe6f94121e5d
SIZE (RJSONIO_0.94-0.tar.gz) = 1143733

View File

@ -0,0 +1,15 @@
This is a package that allows conversion to and from data in
Javascript object notation (JSON) format. This allows R objects to
be inserted into Javascript/ECMAScript/ActionScript code and allows
R programmers to read and convert JSON content to R objects. This
is an alternative to rjson package. That version was too slow for
converting large R objects to JSON and is not extensible, but a
very useful prototype. It is fast for parsing. This package uses
methods, vectorized operations and C code and callbacks to R functions
for deserializing JSON objects to R. Verison 0.4 of this package
uses a new native parser, implements the transformation code in C
and allocates memory efficiently (rather than concatenating because
of event driven parsing). The result is a significantly faster
parsing of large JSON documents.
WWW: http://cran.r-project.org/web/packages/RJSONIO/