From owner-svn-ports-head@freebsd.org Mon Oct 10 12:52:01 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0495C0B2FD; Mon, 10 Oct 2016 12:52:01 +0000 (UTC) (envelope-from tota@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 mx1.freebsd.org (Postfix) with ESMTPS id A33B83C4; Mon, 10 Oct 2016 12:52:01 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9ACq0xL074787; Mon, 10 Oct 2016 12:52:00 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9ACq0e0074782; Mon, 10 Oct 2016 12:52:00 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201610101252.u9ACq0e0074782@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Oct 2016 12:52:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423660 - in head/devel: . R-cran-data.table X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Oct 2016 12:52:02 -0000 Author: tota Date: Mon Oct 10 12:52:00 2016 New Revision: 423660 URL: https://svnweb.freebsd.org/changeset/ports/423660 Log: - 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/ Added: head/devel/R-cran-data.table/ head/devel/R-cran-data.table/Makefile (contents, props changed) head/devel/R-cran-data.table/distinfo (contents, props changed) head/devel/R-cran-data.table/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 10 12:49:50 2016 (r423659) +++ head/devel/Makefile Mon Oct 10 12:52:00 2016 (r423660) @@ -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 Added: head/devel/R-cran-data.table/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-data.table/Makefile Mon Oct 10 12:52:00 2016 (r423660) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $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 Added: head/devel/R-cran-data.table/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-data.table/distinfo Mon Oct 10 12:52:00 2016 (r423660) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475925141 +SHA256 (data.table_1.9.6.tar.gz) = 6f74c349c1731823aef6899edcf18418454167d04eba983e3a6fe17ee9fd236e +SIZE (data.table_1.9.6.tar.gz) = 3709070 Added: head/devel/R-cran-data.table/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-data.table/pkg-descr Mon Oct 10 12:52:00 2016 (r423660) @@ -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/