1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

textproc/R-cran-vroom: Add new port

The goal of 'vroom' is to read and write data (like 'csv', 'tsv'
and 'fwf') quickly. When reading it uses a quick initial indexing
step, then reads the values lazily , so only the data you actually
use needs to be read. The writer formats the data in parallel and
writes to disk asynchronously from formatting.

WWW: https://cran.r-project.org/web/packages/vroom/
This commit is contained in:
TAKATSU Tomonari 2021-07-22 10:56:06 +09:00
parent 2b1aae4dec
commit 7e7122fd29
4 changed files with 43 additions and 0 deletions

View File

@ -26,6 +26,7 @@
SUBDIR += R-cran-stringi
SUBDIR += R-cran-stringr
SUBDIR += R-cran-utf8
SUBDIR += R-cran-vroom
SUBDIR += R-cran-xml2
SUBDIR += R-cran-xmlparsedata
SUBDIR += R-cran-xtable

View File

@ -0,0 +1,32 @@
PORTNAME= vroom
PORTVERSION= 1.5.3
CATEGORIES= textproc
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= tota@FreeBSD.org
COMMENT= Read and Write Rectangular Text Data Quickly
LICENSE= MIT
CRAN_DEPENDS= R-cran-bit64>0:devel/R-cran-bit64 \
R-cran-crayon>0:devel/R-cran-crayon \
R-cran-cli>0:devel/R-cran-cli \
R-cran-glue>0:devel/R-cran-glue \
R-cran-hms>0:devel/R-cran-hms \
R-cran-lifecycle>0:devel/R-cran-lifecycle \
R-cran-rlang>=0.4.2:devel/R-cran-rlang \
R-cran-tibble>=2.0.0:devel/R-cran-tibble \
R-cran-tzdb>=0.1.1:devel/R-cran-tzdb \
R-cran-vctrs>=0.2.0:devel/R-cran-vctrs \
R-cran-tidyselect>0:devel/R-cran-tidyselect \
R-cran-withr>0:devel/R-cran-withr \
R-cran-progress>=1.2.1:devel/R-cran-progress \
R-cran-cpp11>=0.2.0:devel/R-cran-cpp11
BUILD_DEPENDS= ${CRAN_DEPENDS}
RUN_DEPENDS= ${CRAN_DEPENDS}
USES= compiler:c++11-lang cran:auto-plist,compiles shebangfix
SHEBANG_FILES= inst/bench/*.sh
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1626917067
SHA256 (vroom_1.5.3.tar.gz) = 44f92478d4725869cad7fdbb166268aa149ad8f510c378d16047d5b03b4e4b42
SIZE (vroom_1.5.3.tar.gz) = 721400

View File

@ -0,0 +1,7 @@
The goal of 'vroom' is to read and write data (like 'csv', 'tsv'
and 'fwf') quickly. When reading it uses a quick initial indexing
step, then reads the values lazily , so only the data you actually
use needs to be read. The writer formats the data in parallel and
writes to disk asynchronously from formatting.
WWW: https://cran.r-project.org/web/packages/vroom/