diff options
author | David Naylor <dbn@FreeBSD.org> | 2018-10-23 18:29:23 +0000 |
---|---|---|
committer | David Naylor <dbn@FreeBSD.org> | 2018-10-23 18:29:23 +0000 |
commit | 2eb656ec14bfa2ca5fb2058680e4d35caff610c1 (patch) | |
tree | 4fb331f06d85677622dce86849ac96ca60cfb96f | |
parent | math/R-cran-haven: Import and Export 'SPSS', 'Stata' and 'SAS' Files (diff) |
textproc/R-cran-readxl: Read Excel Files
Generated by: portcran (0.1.9)
Notes
Notes:
svn path=/head/; revision=482868
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/R-cran-readxl/Makefile | 25 | ||||
-rw-r--r-- | textproc/R-cran-readxl/distinfo | 3 | ||||
-rw-r--r-- | textproc/R-cran-readxl/pkg-descr | 6 |
4 files changed, 35 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index dbf9b4c596bd..eaa8d2cc8fa5 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -18,6 +18,7 @@ SUBDIR += R-cran-openxlsx SUBDIR += R-cran-pystr SUBDIR += R-cran-readr + SUBDIR += R-cran-readxl SUBDIR += R-cran-rematch SUBDIR += R-cran-rex SUBDIR += R-cran-rmarkdown diff --git a/textproc/R-cran-readxl/Makefile b/textproc/R-cran-readxl/Makefile new file mode 100644 index 000000000000..e1bd9a8f8634 --- /dev/null +++ b/textproc/R-cran-readxl/Makefile @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= readxl +DISTVERSION= 1.1.0 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= dbn@FreeBSD.org +COMMENT= Read Excel Files + +LICENSE= GPLv3 + +BUILD_DEPENDS= R-cran-knitr>0:print/R-cran-knitr +RUN_DEPENDS= R-cran-Rcpp>=0.12.12:devel/R-cran-Rcpp \ + R-cran-tibble>=1.1:devel/R-cran-tibble \ + R-cran-cellranger>0:textproc/R-cran-cellranger +TEST_DEPENDS= R-cran-covr>0:devel/R-cran-covr \ + R-cran-rprojroot>=1.1:devel/R-cran-rprojroot \ + R-cran-testthat>0:devel/R-cran-testthat \ + R-cran-knitr>0:print/R-cran-knitr \ + R-cran-rmarkdown>0:textproc/R-cran-rmarkdown + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> diff --git a/textproc/R-cran-readxl/distinfo b/textproc/R-cran-readxl/distinfo new file mode 100644 index 000000000000..07201903053b --- /dev/null +++ b/textproc/R-cran-readxl/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1540319209 +SHA256 (readxl_1.1.0.tar.gz) = b63d21fc6510acb373e96deaec45e966a523ec75cbec75a089529297ed443116 +SIZE (readxl_1.1.0.tar.gz) = 2036680 diff --git a/textproc/R-cran-readxl/pkg-descr b/textproc/R-cran-readxl/pkg-descr new file mode 100644 index 000000000000..934229ca9f0a --- /dev/null +++ b/textproc/R-cran-readxl/pkg-descr @@ -0,0 +1,6 @@ +Import excel files into R. Supports '.xls' via the embedded 'libxls' C library +<https://github.com/evanmiller/libxls> and '.xlsx' via the embedded 'RapidXML' +C++ library <https://rapidxml.sourceforge.net>. Works on Windows, Mac and Linux +without external dependencies. + +WWW: http://readxl.tidyverse.org |