Date: Thu, 22 Jul 2021 07:11:35 GMT From: TAKATSU Tomonari <tota@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 7e7122fd29f1 - main - textproc/R-cran-vroom: Add new port Message-ID: <202107220711.16M7BZVZ084479@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by tota: URL: https://cgit.FreeBSD.org/ports/commit/?id=7e7122fd29f1133d74fde22dae860be5026f1fd0 commit 7e7122fd29f1133d74fde22dae860be5026f1fd0 Author: TAKATSU Tomonari <tota@FreeBSD.org> AuthorDate: 2021-07-22 01:56:06 +0000 Commit: TAKATSU Tomonari <tota@FreeBSD.org> CommitDate: 2021-07-22 07:07:18 +0000 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/ --- textproc/Makefile | 1 + textproc/R-cran-vroom/Makefile | 32 ++++++++++++++++++++++++++++++++ textproc/R-cran-vroom/distinfo | 3 +++ textproc/R-cran-vroom/pkg-descr | 7 +++++++ 4 files changed, 43 insertions(+) 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107220711.16M7BZVZ084479>