From owner-svn-ports-all@freebsd.org Tue Oct 23 18:29:25 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4575DFF07C8; Tue, 23 Oct 2018 18:29:25 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DC69D8A3D2; Tue, 23 Oct 2018 18:29:24 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AF185139DB; Tue, 23 Oct 2018 18:29:24 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9NITOjb084688; Tue, 23 Oct 2018 18:29:24 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9NITN8s084684; Tue, 23 Oct 2018 18:29:23 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201810231829.w9NITN8s084684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Tue, 23 Oct 2018 18:29:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482868 - in head/textproc: . R-cran-readxl X-SVN-Group: ports-head X-SVN-Commit-Author: dbn X-SVN-Commit-Paths: in head/textproc: . R-cran-readxl X-SVN-Commit-Revision: 482868 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Oct 2018 18:29:25 -0000 Author: dbn Date: Tue Oct 23 18:29:23 2018 New Revision: 482868 URL: https://svnweb.freebsd.org/changeset/ports/482868 Log: textproc/R-cran-readxl: Read Excel Files Generated by: portcran (0.1.9) Added: head/textproc/R-cran-readxl/ head/textproc/R-cran-readxl/Makefile (contents, props changed) head/textproc/R-cran-readxl/distinfo (contents, props changed) head/textproc/R-cran-readxl/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Oct 23 18:25:39 2018 (r482867) +++ head/textproc/Makefile Tue Oct 23 18:29:23 2018 (r482868) @@ -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 Added: head/textproc/R-cran-readxl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-readxl/Makefile Tue Oct 23 18:29:23 2018 (r482868) @@ -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 Added: head/textproc/R-cran-readxl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-readxl/distinfo Tue Oct 23 18:29:23 2018 (r482868) @@ -0,0 +1,3 @@ +TIMESTAMP = 1540319209 +SHA256 (readxl_1.1.0.tar.gz) = b63d21fc6510acb373e96deaec45e966a523ec75cbec75a089529297ed443116 +SIZE (readxl_1.1.0.tar.gz) = 2036680 Added: head/textproc/R-cran-readxl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-readxl/pkg-descr Tue Oct 23 18:29:23 2018 (r482868) @@ -0,0 +1,6 @@ +Import excel files into R. Supports '.xls' via the embedded 'libxls' C library + and '.xlsx' via the embedded 'RapidXML' +C++ library . Works on Windows, Mac and Linux +without external dependencies. + +WWW: http://readxl.tidyverse.org