From owner-svn-ports-head@freebsd.org Tue Aug 11 20:41:31 2015 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 CEC7F99FE36; Tue, 11 Aug 2015 20:41:31 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 A55D73EC; Tue, 11 Aug 2015 20:41:31 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BKfVxt028729; Tue, 11 Aug 2015 20:41:31 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BKfUeP028725; Tue, 11 Aug 2015 20:41:30 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508112041.t7BKfUeP028725@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 11 Aug 2015 20:41:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393972 - in head/math: . R-cran-irlba 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.20 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, 11 Aug 2015 20:41:31 -0000 Author: tota Date: Tue Aug 11 20:41:29 2015 New Revision: 393972 URL: https://svnweb.freebsd.org/changeset/ports/393972 Log: - Add new port: math/R-cran-irlba A fast and memory-efficient method for computing a few approximate singular values and singular vectors of large matrices. WWW: https://cran.r-project.org/web/packages/irlba/ Added: head/math/R-cran-irlba/ head/math/R-cran-irlba/Makefile (contents, props changed) head/math/R-cran-irlba/distinfo (contents, props changed) head/math/R-cran-irlba/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Aug 11 20:19:40 2015 (r393971) +++ head/math/Makefile Tue Aug 11 20:41:29 2015 (r393972) @@ -29,6 +29,7 @@ SUBDIR += R-cran-gtable SUBDIR += R-cran-igraph SUBDIR += R-cran-inline + SUBDIR += R-cran-irlba SUBDIR += R-cran-labeling SUBDIR += R-cran-memisc SUBDIR += R-cran-minqa Added: head/math/R-cran-irlba/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-irlba/Makefile Tue Aug 11 20:41:29 2015 (r393972) @@ -0,0 +1,17 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= irlba +PORTVERSION= 1.0.3 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Fast partial SVD by implicitly-restarted Lanczos bidiagonalization + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +USES= cran:auto-plist + +.include Added: head/math/R-cran-irlba/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-irlba/distinfo Tue Aug 11 20:41:29 2015 (r393972) @@ -0,0 +1,2 @@ +SHA256 (irlba_1.0.3.tar.gz) = deaf82b5670f91bc65a0ff31a2f03c540e210539251c5e0e10b2a707d3ac5ec0 +SIZE (irlba_1.0.3.tar.gz) = 180965 Added: head/math/R-cran-irlba/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-irlba/pkg-descr Tue Aug 11 20:41:29 2015 (r393972) @@ -0,0 +1,4 @@ +A fast and memory-efficient method for computing a few approximate +singular values and singular vectors of large matrices. + +WWW: https://cran.r-project.org/web/packages/irlba/