diff options
| author | TAKATSU Tomonari <tota@FreeBSD.org> | 2021-07-22 01:56:06 +0000 |
|---|---|---|
| committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2021-07-22 07:07:18 +0000 |
| commit | 7e7122fd29f1133d74fde22dae860be5026f1fd0 (patch) | |
| tree | cb68105853ee3d99cf85fcae9fc2b5d002ad4091 | |
| parent | 2b1aae4dec2f1db60c85b9f8cf6e0d9b64b0e848 (diff) | |
| -rw-r--r-- | textproc/Makefile | 1 | ||||
| -rw-r--r-- | textproc/R-cran-vroom/Makefile | 32 | ||||
| -rw-r--r-- | textproc/R-cran-vroom/distinfo | 3 | ||||
| -rw-r--r-- | textproc/R-cran-vroom/pkg-descr | 7 |
4 files changed, 43 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 8a40efcec192..51e48c564f16 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -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 diff --git a/textproc/R-cran-vroom/Makefile b/textproc/R-cran-vroom/Makefile new file mode 100644 index 000000000000..5dabe2cfec4e --- /dev/null +++ b/textproc/R-cran-vroom/Makefile @@ -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> diff --git a/textproc/R-cran-vroom/distinfo b/textproc/R-cran-vroom/distinfo new file mode 100644 index 000000000000..355fccbaff3e --- /dev/null +++ b/textproc/R-cran-vroom/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1626917067 +SHA256 (vroom_1.5.3.tar.gz) = 44f92478d4725869cad7fdbb166268aa149ad8f510c378d16047d5b03b4e4b42 +SIZE (vroom_1.5.3.tar.gz) = 721400 diff --git a/textproc/R-cran-vroom/pkg-descr b/textproc/R-cran-vroom/pkg-descr new file mode 100644 index 000000000000..e61014ec3b57 --- /dev/null +++ b/textproc/R-cran-vroom/pkg-descr @@ -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/ |
