Initial commit

Streamlined data import and export by making assumptions that the user
is probably willing to make: 'import()' and 'export()' determine the
data structure from the file extension, reasonable defaults are used
for data import and export (e.g., 'stringsAsFactors=FALSE'), web-based
import is natively supported (including from SSL/HTTPS), compressed
files can be read directly without explicit decompression, and fast
import packages are used where appropriate. An additional convenience
function, 'convert()', provides a simple method for converting between
file types.
This commit is contained in:
brook 2019-07-31 00:47:04 +00:00
parent 814db1c19a
commit 96809e3ed5
5 changed files with 42 additions and 2 deletions

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2872 2019/07/31 00:43:29 brook Exp $
# $NetBSD: Makefile,v 1.2873 2019/07/31 00:47:04 brook Exp $
#
COMMENT= Development utilities
@ -38,6 +38,7 @@ SUBDIR+= R-plogr
SUBDIR+= R-proto
SUBDIR+= R-rematch
SUBDIR+= R-repr
SUBDIR+= R-rio
SUBDIR+= R-rlang
SUBDIR+= R-uuid
SUBDIR+= RBTools

9
devel/R-rio/DESCR Normal file
View file

@ -0,0 +1,9 @@
Streamlined data import and export by making assumptions that the user
is probably willing to make: 'import()' and 'export()' determine the
data structure from the file extension, reasonable defaults are used
for data import and export (e.g., 'stringsAsFactors=FALSE'), web-based
import is natively supported (including from SSL/HTTPS), compressed
files can be read directly without explicit decompression, and fast
import packages are used where appropriate. An additional convenience
function, 'convert()', provides a simple method for converting between
file types.

23
devel/R-rio/Makefile Normal file
View file

@ -0,0 +1,23 @@
# $NetBSD: Makefile,v 1.1 2019/07/31 00:47:04 brook Exp $
CATEGORIES= devel R
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= ${R_HOMEPAGE_BASE}/rio/
COMMENT= Swiss-army knife for data I/O
LICENSE= gnu-gpl-v2
R_PKGNAME= rio
R_PKGVER= 0.5.16
DEPENDS+= R-tibble>=2.1.3:../../math/R-tibble
DEPENDS+= R-data.table>=1.9.8:../../textproc/R-data.table
DEPENDS+= R-haven>=1.1.0:../../textproc/R-haven
DEPENDS+= R-openxlsx>=4.1.0.1:../../textproc/R-openxlsx
DEPENDS+= R-readxl>=0.1.1:../../textproc/R-readxl
DEPENDS+= R-curl>=0.6:../../www/R-curl
USE_LANGUAGES= # none
.include "../../math/R/Makefile.extension"
.include "../../mk/bsd.pkg.mk"

6
devel/R-rio/distinfo Normal file
View file

@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.1 2019/07/31 00:47:04 brook Exp $
SHA1 (R/rio_0.5.16.tar.gz) = a5c87d0c970d51b89f6ab002f31fd9824a31fa6c
RMD160 (R/rio_0.5.16.tar.gz) = bbb8b01573571a457ef21b753a76e08bdeeeedf4
SHA512 (R/rio_0.5.16.tar.gz) = 96b789b6b896f29a91967bf10a876d47fa0cf901c62d0cc372ce78934194ee5b21ce432a113f8a194b20a2a28ca6d62e5725bd37d632be0f6827785e0cede965
Size (R/rio_0.5.16.tar.gz) = 420489 bytes

View file

@ -1,4 +1,4 @@
$NetBSD: CHANGES-2019,v 1.3083 2019/07/31 00:43:29 brook Exp $
$NetBSD: CHANGES-2019,v 1.3084 2019/07/31 00:47:04 brook Exp $
Changes to the packages collection and infrastructure in 2019:
@ -5040,3 +5040,4 @@ Changes to the packages collection and infrastructure in 2019:
Added devel/R-checkmate version 1.9.4 [brook 2019-07-30]
Added devel/R-clipr version 0.7.0 [brook 2019-07-30]
Added devel/R-rematch version 1.0.1 [brook 2019-07-31]
Added devel/R-rio version 0.5.16 [brook 2019-07-31]