- Add new port: devel/R-cran-data.table

Fast aggregation of large data (e.g. 100GB in RAM), fast ordered
  joins, fast add/modify/delete of columns by group using no copies
  at all, list columns and a fast file reader (fread). Offers a natural
  and flexible syntax, for faster development.

  WWW: https://cran.r-project.org/web/packages/data.table/
This commit is contained in:
TAKATSU Tomonari 2016-10-10 12:52:00 +00:00
parent 229913f9fd
commit 1134ee52b3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=423660
4 changed files with 30 additions and 0 deletions

View File

@ -21,6 +21,7 @@
SUBDIR += R-cran-caret
SUBDIR += R-cran-chron
SUBDIR += R-cran-crayon
SUBDIR += R-cran-data.table
SUBDIR += R-cran-doParallel
SUBDIR += R-cran-evaluate
SUBDIR += R-cran-foreach

View File

@ -0,0 +1,20 @@
# Created by: TAKATSU Tomonari <tota@FreeBSD.org>
# $FreeBSD$
PORTNAME= data.table
PORTVERSION= 1.9.6
CATEGORIES= devel
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= tota@FreeBSD.org
COMMENT= Extension of Data.frame
LICENSE= GPLv2+
CRAN_DEPENDS= R-cran-chron>0:devel/R-cran-chron
BUILD_DEPENDS= ${CRAN_DEPENDS}
RUN_DEPENDS= ${CRAN_DEPENDS}
USES= cran:auto-plist,compiles
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1475925141
SHA256 (data.table_1.9.6.tar.gz) = 6f74c349c1731823aef6899edcf18418454167d04eba983e3a6fe17ee9fd236e
SIZE (data.table_1.9.6.tar.gz) = 3709070

View File

@ -0,0 +1,6 @@
Fast aggregation of large data (e.g. 100GB in RAM), fast ordered
joins, fast add/modify/delete of columns by group using no copies
at all, list columns and a fast file reader (fread). Offers a natural
and flexible syntax, for faster development.
WWW: https://cran.r-project.org/web/packages/data.table/