From owner-svn-ports-head@FreeBSD.ORG Tue May 14 21:33:31 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2E6244DF; Tue, 14 May 2013 21:33:31 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 07CCAED8; Tue, 14 May 2013 21:33:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4ELXU2l006119; Tue, 14 May 2013 21:33:30 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4ELXUgT006115; Tue, 14 May 2013 21:33:30 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201305142133.r4ELXUgT006115@svn.freebsd.org> From: TAKATSU Tomonari Date: Tue, 14 May 2013 21:33:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318202 - in head/devel: . R-cran-caTools 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.14 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: Tue, 14 May 2013 21:33:31 -0000 Author: tota Date: Tue May 14 21:33:29 2013 New Revision: 318202 URL: http://svnweb.freebsd.org/changeset/ports/318202 Log: - Add new port: devel/R-cran-caTools Contains several basic utility functions including: moving (rolling, running) window statistic functions, read/write for GIF and ENVI binary files, fast calculation of AUC, LogitBoost classifier, base64 encoder/decoder, round-off error free sum and cumsum, etc. WWW: http://cran.r-project.org/web/packages/caTools/ Added: head/devel/R-cran-caTools/ head/devel/R-cran-caTools/Makefile (contents, props changed) head/devel/R-cran-caTools/distinfo (contents, props changed) head/devel/R-cran-caTools/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue May 14 21:31:07 2013 (r318201) +++ head/devel/Makefile Tue May 14 21:33:29 2013 (r318202) @@ -14,6 +14,7 @@ SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp SUBDIR += R-cran-bitops + SUBDIR += R-cran-caTools SUBDIR += R-cran-caret SUBDIR += R-cran-chron SUBDIR += R-cran-foreach Added: head/devel/R-cran-caTools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-caTools/Makefile Tue May 14 21:33:29 2013 (r318202) @@ -0,0 +1,19 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= caTools +PORTVERSION= 1.14 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Tools: moving window statistics, GIF, Base64, ROC AUC, etc + +LICENSE= GPLv3 + +RUN_DEPENDS= R-cran-bitops>0:${PORTSDIR}/devel/R-cran-bitops + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include Added: head/devel/R-cran-caTools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-caTools/distinfo Tue May 14 21:33:29 2013 (r318202) @@ -0,0 +1,2 @@ +SHA256 (caTools_1.14.tar.gz) = bb1da4ab004e3199e1f8712d0fd4e4031e58fed52dae8de000e3528f493a0ca3 +SIZE (caTools_1.14.tar.gz) = 62791 Added: head/devel/R-cran-caTools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-caTools/pkg-descr Tue May 14 21:33:29 2013 (r318202) @@ -0,0 +1,6 @@ +Contains several basic utility functions including: moving (rolling, +running) window statistic functions, read/write for GIF and ENVI +binary files, fast calculation of AUC, LogitBoost classifier, base64 +encoder/decoder, round-off error free sum and cumsum, etc. + +WWW: http://cran.r-project.org/web/packages/caTools/