Received: by mail.netbsd.org (Postfix, from userid 605) id 9197684D86; Thu, 8 Feb 2018 17:35:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1CDB384D60 for ; Thu, 8 Feb 2018 17:35:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id VHuaz9CexviS for ; Thu, 8 Feb 2018 17:35:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 917FE84CE1 for ; Thu, 8 Feb 2018 17:35:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8BB60FB40; Thu, 8 Feb 2018 17:35:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1518111323131560" MIME-Version: 1.0 Date: Thu, 8 Feb 2018 17:35:23 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/textproc/R-jsonlite To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20180208173523.8BB60FB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1518111323131560 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Thu Feb 8 17:35:23 UTC 2018 Added Files: pkgsrc/textproc/R-jsonlite: DESCR Makefile distinfo Log Message: textproc/R-jsonlite: Import version 1.5 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 a web API. The implementation is based on the mapping described in the vignette (Ooms, 2014). In addition to converting JSON data from/to R objects, '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. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/R-jsonlite/DESCR \ pkgsrc/textproc/R-jsonlite/Makefile pkgsrc/textproc/R-jsonlite/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1518111323131560 Content-Disposition: inline Content-Length: 2208 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/textproc/R-jsonlite/DESCR diff -u /dev/null pkgsrc/textproc/R-jsonlite/DESCR:1.1 --- /dev/null Thu Feb 8 17:35:23 2018 +++ pkgsrc/textproc/R-jsonlite/DESCR Thu Feb 8 17:35:23 2018 @@ -0,0 +1,11 @@ +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 a web API. The +implementation is based on the mapping described in the vignette +(Ooms, 2014). In addition to converting JSON data from/to R objects, +'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. Index: pkgsrc/textproc/R-jsonlite/Makefile diff -u /dev/null pkgsrc/textproc/R-jsonlite/Makefile:1.1 --- /dev/null Thu Feb 8 17:35:23 2018 +++ pkgsrc/textproc/R-jsonlite/Makefile Thu Feb 8 17:35:23 2018 @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1 2018/02/08 17:35:23 minskim Exp $ + +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_R_CRAN:=contrib/} + +MAINTAINER= minskim@NetBSD.org +HOMEPAGE= ${R_HOMEPAGE_BASE}/jsonlite/ +COMMENT= Robust, high performance JSON parser and generator +LICENSE= mit + +R_PKGNAME= jsonlite +R_PKGVER= 1.5 + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/R-jsonlite/distinfo diff -u /dev/null pkgsrc/textproc/R-jsonlite/distinfo:1.1 --- /dev/null Thu Feb 8 17:35:23 2018 +++ pkgsrc/textproc/R-jsonlite/distinfo Thu Feb 8 17:35:23 2018 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2018/02/08 17:35:23 minskim Exp $ + +SHA1 (R/jsonlite_1.5.tar.gz) = 79ba0df8da5e9867e1854fe47254904b65f7ef68 +RMD160 (R/jsonlite_1.5.tar.gz) = 1347d353629f4db64d24d4e926aeb9311a70ba87 +SHA512 (R/jsonlite_1.5.tar.gz) = c22dc23b319c0e9acdf857a6ae8750a4b77d5a663df8540fb4550900e700cfca47031267277b01dd7da695387c4d6184f1332a1e124e6137a2ca2c020351d4b0 +Size (R/jsonlite_1.5.tar.gz) = 1096810 bytes --_----------=_1518111323131560--