diff options
author | tota <tota@FreeBSD.org> | 2017-09-07 07:42:09 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2017-09-07 07:42:09 +0800 |
commit | b8f4ce58ebc95fb5290a9974878d10e30ee45b70 (patch) | |
tree | 56bdb2a4b8e4c65412f4b7676bcbd3afd4cfe939 /textproc | |
parent | 1ccb3eb9a344fb9e05a3ca248b5c81543831d217 (diff) | |
download | freebsd-ports-gnome-b8f4ce58ebc95fb5290a9974878d10e30ee45b70.tar.gz freebsd-ports-gnome-b8f4ce58ebc95fb5290a9974878d10e30ee45b70.tar.zst freebsd-ports-gnome-b8f4ce58ebc95fb5290a9974878d10e30ee45b70.zip |
- Add new port: textproc/R-cran-readr
The goal of 'readr' is to provide a fast and friendly way to read
rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to
flexibly parse many types of data found in the wild, while still
cleanly failing when data unexpectedly changes.
WWW: https://cran.r-project.org/web/packages/readr/
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/R-cran-readr/Makefile | 25 | ||||
-rw-r--r-- | textproc/R-cran-readr/distinfo | 3 | ||||
-rw-r--r-- | textproc/R-cran-readr/pkg-descr | 6 |
4 files changed, 35 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index e85a2b7356ea..6b06d428aa67 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -14,6 +14,7 @@ SUBDIR += R-cran-htmltools SUBDIR += R-cran-markdown SUBDIR += R-cran-pystr + SUBDIR += R-cran-readr SUBDIR += R-cran-rmarkdown SUBDIR += R-cran-stringi SUBDIR += R-cran-stringr diff --git a/textproc/R-cran-readr/Makefile b/textproc/R-cran-readr/Makefile new file mode 100644 index 000000000000..9a27bfe3975b --- /dev/null +++ b/textproc/R-cran-readr/Makefile @@ -0,0 +1,25 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= readr +PORTVERSION= 1.1.1 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Read Rectangular Text Data + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +CRAN_DEPENDS= R-cran-Rcpp>=0.12.0.5:devel/R-cran-Rcpp \ + R-cran-tibble>0:devel/R-cran-tibble \ + R-cran-hms>0:devel/R-cran-hms \ + R-cran-R6>0:devel/R-cran-R6 \ + R-cran-BH>0:devel/R-cran-BH +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> diff --git a/textproc/R-cran-readr/distinfo b/textproc/R-cran-readr/distinfo new file mode 100644 index 000000000000..906bfda2cb5e --- /dev/null +++ b/textproc/R-cran-readr/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1504684095 +SHA256 (readr_1.1.1.tar.gz) = 1a29b99009a06f2cee18d08bc6201fd4985b6d45c76cefca65084dcc1a2f7cb3 +SIZE (readr_1.1.1.tar.gz) = 233793 diff --git a/textproc/R-cran-readr/pkg-descr b/textproc/R-cran-readr/pkg-descr new file mode 100644 index 000000000000..97e661a311ae --- /dev/null +++ b/textproc/R-cran-readr/pkg-descr @@ -0,0 +1,6 @@ +The goal of 'readr' is to provide a fast and friendly way to read +rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to +flexibly parse many types of data found in the wild, while still +cleanly failing when data unexpectedly changes. + +WWW: https://cran.r-project.org/web/packages/readr/ |