From owner-svn-ports-head@freebsd.org Fri Apr 29 07:04:56 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 459BFB202E2; Fri, 29 Apr 2016 07:04:56 +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 045781ADE; Fri, 29 Apr 2016 07:04:55 +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 u3T74txe064237; Fri, 29 Apr 2016 07:04:55 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3T74sXm064233; Fri, 29 Apr 2016 07:04:54 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201604290704.u3T74sXm064233@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Fri, 29 Apr 2016 07:04:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414259 - in head/math: . R-cran-Rmpfr 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.21 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: Fri, 29 Apr 2016 07:04:56 -0000 Author: tota Date: Fri Apr 29 07:04:54 2016 New Revision: 414259 URL: https://svnweb.freebsd.org/changeset/ports/414259 Log: - Add new port: math/R-cran-Rmpfr Arithmetic (via S4 classes and methods) for arbitrary precision floating point numbers, including transcendental ("special") functions. To this end, Rmpfr interfaces to the LGPL'ed MPFR (Multiple Precision Floating-Point Reliable) Library which itself is based on the GMP (GNU Multiple Precision) Library. WWW: https://cran.r-project.org/web/packages/Rmpfr/ Submitted by: Jukka A. Ukkonen (via private e-mail) Added: head/math/R-cran-Rmpfr/ head/math/R-cran-Rmpfr/Makefile (contents, props changed) head/math/R-cran-Rmpfr/distinfo (contents, props changed) head/math/R-cran-Rmpfr/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Apr 29 06:56:37 2016 (r414258) +++ head/math/Makefile Fri Apr 29 07:04:54 2016 (r414259) @@ -20,6 +20,7 @@ SUBDIR += R-cran-RSvgDevice SUBDIR += R-cran-RcppArmadillo SUBDIR += R-cran-RcppEigen + SUBDIR += R-cran-Rmpfr SUBDIR += R-cran-SparseM SUBDIR += R-cran-SuppDists SUBDIR += R-cran-VGAM Added: head/math/R-cran-Rmpfr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-Rmpfr/Makefile Fri Apr 29 07:04:54 2016 (r414259) @@ -0,0 +1,20 @@ +# Created by: Jukka A. Ukkonen +# $FreeBSD$ + +PORTNAME= Rmpfr +DISTVERSION= 0.6-0 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= R wrapper for the mpfr multiple precision library + +LICENSE= GPLv2+ + +LIB_DEPENDS= libgmp.so:math/gmp \ + libmpfr.so:math/mpfr +RUN_DEPENDS= R-cran-gmp>=0.5.8:math/R-cran-gmp + +USES= cran:auto-plist + +.include Added: head/math/R-cran-Rmpfr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-Rmpfr/distinfo Fri Apr 29 07:04:54 2016 (r414259) @@ -0,0 +1,2 @@ +SHA256 (Rmpfr_0.6-0.tar.gz) = 43a1df2244014d76bb7fce1b6b143d57a64126dd26504c9060d6efd6f497251a +SIZE (Rmpfr_0.6-0.tar.gz) = 582729 Added: head/math/R-cran-Rmpfr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-Rmpfr/pkg-descr Fri Apr 29 07:04:54 2016 (r414259) @@ -0,0 +1,7 @@ +Arithmetic (via S4 classes and methods) for arbitrary precision +floating point numbers, including transcendental ("special") +functions. To this end, Rmpfr interfaces to the LGPL'ed MPFR (Multiple +Precision Floating-Point Reliable) Library which itself is based +on the GMP (GNU Multiple Precision) Library. + +WWW: https://cran.r-project.org/web/packages/Rmpfr/