From owner-dev-commits-ports-main@freebsd.org Thu Jul 22 07:11:35 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DBAB765453F; Thu, 22 Jul 2021 07:11:35 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GVkCC5htGz4jhQ; Thu, 22 Jul 2021 07:11:35 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9C3C544A; Thu, 22 Jul 2021 07:11:35 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16M7BZEx084480; Thu, 22 Jul 2021 07:11:35 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16M7BZVZ084479; Thu, 22 Jul 2021 07:11:35 GMT (envelope-from git) Date: Thu, 22 Jul 2021 07:11:35 GMT Message-Id: <202107220711.16M7BZVZ084479@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: TAKATSU Tomonari Subject: git: 7e7122fd29f1 - main - textproc/R-cran-vroom: Add new port MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: tota X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 7e7122fd29f1133d74fde22dae860be5026f1fd0 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jul 2021 07:11:36 -0000 The branch main has been updated by tota: URL: https://cgit.FreeBSD.org/ports/commit/?id=7e7122fd29f1133d74fde22dae860be5026f1fd0 commit 7e7122fd29f1133d74fde22dae860be5026f1fd0 Author: TAKATSU Tomonari AuthorDate: 2021-07-22 01:56:06 +0000 Commit: TAKATSU Tomonari 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 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/