summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTAKATSU Tomonari <tota@FreeBSD.org>2016-10-10 12:52:00 +0000
committerTAKATSU Tomonari <tota@FreeBSD.org>2016-10-10 12:52:00 +0000
commit1134ee52b3ad7933e3f6eb08a2fb08835e040287 (patch)
treea6affa87440d7ca4c9cca9056a2eb9a4e5216725
parent- Add new port: math/R-cran-numDeriv (diff)
- 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/
Diffstat (limited to '')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/R-cran-data.table/Makefile20
-rw-r--r--devel/R-cran-data.table/distinfo3
-rw-r--r--devel/R-cran-data.table/pkg-descr6
4 files changed, 30 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 0bca2aae2f1e..caad3636ed96 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -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
diff --git a/devel/R-cran-data.table/Makefile b/devel/R-cran-data.table/Makefile
new file mode 100644
index 000000000000..7ec4786452c0
--- /dev/null
+++ b/devel/R-cran-data.table/Makefile
@@ -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>
diff --git a/devel/R-cran-data.table/distinfo b/devel/R-cran-data.table/distinfo
new file mode 100644
index 000000000000..f06da15f96a5
--- /dev/null
+++ b/devel/R-cran-data.table/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1475925141
+SHA256 (data.table_1.9.6.tar.gz) = 6f74c349c1731823aef6899edcf18418454167d04eba983e3a6fe17ee9fd236e
+SIZE (data.table_1.9.6.tar.gz) = 3709070
diff --git a/devel/R-cran-data.table/pkg-descr b/devel/R-cran-data.table/pkg-descr
new file mode 100644
index 000000000000..98e72b9ade18
--- /dev/null
+++ b/devel/R-cran-data.table/pkg-descr
@@ -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/