R-openxlsx: initial commit.
Simplifies the creation of Excel .xlsx files by providing a high level interface to writing, styling and editing worksheets. Through the use of 'Rcpp', read/write times are comparable to the 'xlsx' and 'XLConnect' packages with the added benefit of removing the dependency on Java.
This commit is contained in:
parent
0151ae9a95
commit
21cc77c957
5 changed files with 34 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: CHANGES-2019,v 1.3122 2019/07/31 13:47:23 brook Exp $
|
||||
$NetBSD: CHANGES-2019,v 1.3123 2019/07/31 13:48:46 brook Exp $
|
||||
|
||||
Changes to the packages collection and infrastructure in 2019:
|
||||
|
||||
|
@ -5079,3 +5079,4 @@ Changes to the packages collection and infrastructure in 2019:
|
|||
Added textproc/R-data.table version 1.12.2 [brook 2019-07-31]
|
||||
Added textproc/R-haven version 2.1.1 [brook 2019-07-31]
|
||||
Added textproc/R-htmlTable version 1.13.1 [brook 2019-07-31]
|
||||
Added textproc/R-openxlsx version 4.1.0.1 [brook 2019-07-31]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.1037 2019/07/31 13:47:23 brook Exp $
|
||||
# $NetBSD: Makefile,v 1.1038 2019/07/31 13:48:46 brook Exp $
|
||||
#
|
||||
|
||||
COMMENT= Text processing utilities (does not include desktop publishing)
|
||||
|
@ -21,6 +21,7 @@ SUBDIR+= R-htmlTable
|
|||
SUBDIR+= R-htmltools
|
||||
SUBDIR+= R-jsonlite
|
||||
SUBDIR+= R-markdown
|
||||
SUBDIR+= R-openxlsx
|
||||
SUBDIR+= R-stringi
|
||||
SUBDIR+= R-stringr
|
||||
SUBDIR+= R-utf8
|
||||
|
|
5
textproc/R-openxlsx/DESCR
Normal file
5
textproc/R-openxlsx/DESCR
Normal file
|
@ -0,0 +1,5 @@
|
|||
Simplifies the creation of Excel .xlsx files by providing a high level
|
||||
interface to writing, styling and editing worksheets. Through the use
|
||||
of 'Rcpp', read/write times are comparable to the 'xlsx' and
|
||||
'XLConnect' packages with the added benefit of removing the dependency
|
||||
on Java.
|
19
textproc/R-openxlsx/Makefile
Normal file
19
textproc/R-openxlsx/Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
# $NetBSD: Makefile,v 1.1 2019/07/31 13:48:46 brook Exp $
|
||||
|
||||
CATEGORIES= textproc R
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= ${R_HOMEPAGE_BASE}/openxlsx/
|
||||
COMMENT= Read, write and edit XLSX files
|
||||
LICENSE= mit
|
||||
|
||||
R_PKGNAME= openxlsx
|
||||
R_PKGVER= 4.1.0.1
|
||||
|
||||
DEPENDS+= R-zip>=2.0.3:../../archivers/R-zip
|
||||
|
||||
USE_LANGUAGES= c c++
|
||||
|
||||
.include "../../math/R/Makefile.extension"
|
||||
.include "../../devel/R-Rcpp/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
6
textproc/R-openxlsx/distinfo
Normal file
6
textproc/R-openxlsx/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2019/07/31 13:48:46 brook Exp $
|
||||
|
||||
SHA1 (R/openxlsx_4.1.0.1.tar.gz) = 89d19396ccfeb8acc44a092dc5636e460003c20c
|
||||
RMD160 (R/openxlsx_4.1.0.1.tar.gz) = 9dfd3db1a83f9d9bfae5d28c18c7f8f61a783295
|
||||
SHA512 (R/openxlsx_4.1.0.1.tar.gz) = 6f108d5ec654e005fc21ceeb829e22bbf8717eef6aa36d8f13baf7165da9c4c641acb1bda6471647255043b93eff3f1793562e7b8bc3135d49f71806654f9641
|
||||
Size (R/openxlsx_4.1.0.1.tar.gz) = 1458738 bytes
|
Loading…
Reference in a new issue