From owner-svn-ports-all@freebsd.org Sun Nov 15 10:36:23 2015 Return-Path: Delivered-To: svn-ports-all@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 D7638A2E8AD; Sun, 15 Nov 2015 10:36:23 +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 B0F381988; Sun, 15 Nov 2015 10:36:23 +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 tAFAaMwE003121; Sun, 15 Nov 2015 10:36:22 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAFAaMUS003118; Sun, 15 Nov 2015 10:36:22 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201511151036.tAFAaMUS003118@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 15 Nov 2015 10:36:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401684 - head/math/R-cran-RcppEigen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2015 10:36:24 -0000 Author: tota Date: Sun Nov 15 10:36:22 2015 New Revision: 401684 URL: https://svnweb.freebsd.org/changeset/ports/401684 Log: - Add new port: math/R-cran-RcppEigen R and Eigen integration using Rcpp. Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers and related algorithms. It supports dense and sparse matrices on integer, floating point and complex numbers, decompositions of such matrices, and solutions of linear systems. Its performance on many algorithms is comparable with some of the best implementations based on Lapack and level-3 BLAS. The RcppEigen package includes the header files from the Eigen C++ template library (currently version 3.2.2). Thus users do not need to install Eigen itself in order to use RcppEigen. Since version 3.1.1, Eigen is licensed under the Mozilla Public License (version 2); earlier version were licensed under the GNU LGPL version 3 or later. RcppEigen (the Rcpp bindings/bridge to Eigen) is licensed under the GNU GPL version 2 or later, as is the rest of Rcpp. WWW: https://cran.r-project.org/web/packages/RcppEigen/ Added: head/math/R-cran-RcppEigen/ head/math/R-cran-RcppEigen/Makefile (contents, props changed) head/math/R-cran-RcppEigen/distinfo (contents, props changed) head/math/R-cran-RcppEigen/pkg-descr (contents, props changed) Added: head/math/R-cran-RcppEigen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-RcppEigen/Makefile Sun Nov 15 10:36:22 2015 (r401684) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= RcppEigen +PORTVERSION= 0.3.2.5.1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Rcpp integration for the Eigen templated linear algebra library + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= R-cran-Rcpp>=0.11.0:${PORTSDIR}/devel/R-cran-Rcpp + +USES= cran:auto-plist + +.include Added: head/math/R-cran-RcppEigen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-RcppEigen/distinfo Sun Nov 15 10:36:22 2015 (r401684) @@ -0,0 +1,2 @@ +SHA256 (RcppEigen_0.3.2.5.1.tar.gz) = 9a2c8300e7dcc837c9c225dc8f9c857bc23785f91134d8868200eb2eb29f81c8 +SIZE (RcppEigen_0.3.2.5.1.tar.gz) = 1235892 Added: head/math/R-cran-RcppEigen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-RcppEigen/pkg-descr Sun Nov 15 10:36:22 2015 (r401684) @@ -0,0 +1,16 @@ +R and Eigen integration using Rcpp. Eigen is a C++ template library +for linear algebra: matrices, vectors, numerical solvers and related +algorithms. It supports dense and sparse matrices on integer, +floating point and complex numbers, decompositions of such matrices, +and solutions of linear systems. Its performance on many algorithms +is comparable with some of the best implementations based on Lapack +and level-3 BLAS. The RcppEigen package includes the header files +from the Eigen C++ template library (currently version 3.2.2). Thus +users do not need to install Eigen itself in order to use RcppEigen. +Since version 3.1.1, Eigen is licensed under the Mozilla Public +License (version 2); earlier version were licensed under the GNU +LGPL version 3 or later. RcppEigen (the Rcpp bindings/bridge to +Eigen) is licensed under the GNU GPL version 2 or later, as is the +rest of Rcpp. + +WWW: https://cran.r-project.org/web/packages/RcppEigen/