From owner-svn-ports-head@freebsd.org Fri Apr 29 06:56:39 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 97375B20156; Fri, 29 Apr 2016 06:56:39 +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 415661694; Fri, 29 Apr 2016 06:56:39 +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 u3T6uc3E061208; Fri, 29 Apr 2016 06:56:38 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3T6uc9Z061204; Fri, 29 Apr 2016 06:56:38 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201604290656.u3T6uc9Z061204@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 06:56:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414258 - in head/math: . R-cran-gmp 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 06:56:39 -0000 Author: tota Date: Fri Apr 29 06:56:37 2016 New Revision: 414258 URL: https://svnweb.freebsd.org/changeset/ports/414258 Log: - Add new port: math/R-cran-gmp Multiple Precision Arithmetic (big integers and rationals, prime number tests, matrix computation), "arithmetic without limitations" using the C library GMP (GNU Multiple Precision Arithmetic). WWW: https://cran.r-project.org/web/packages/gmp/ Added: head/math/R-cran-gmp/ head/math/R-cran-gmp/Makefile (contents, props changed) head/math/R-cran-gmp/distinfo (contents, props changed) head/math/R-cran-gmp/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Apr 29 05:51:37 2016 (r414257) +++ head/math/Makefile Fri Apr 29 06:56:37 2016 (r414258) @@ -34,6 +34,7 @@ SUBDIR += R-cran-forecast SUBDIR += R-cran-fracdiff SUBDIR += R-cran-geepack + SUBDIR += R-cran-gmp SUBDIR += R-cran-gpclib SUBDIR += R-cran-gss SUBDIR += R-cran-gtable Added: head/math/R-cran-gmp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-gmp/Makefile Fri Apr 29 06:56:37 2016 (r414258) @@ -0,0 +1,18 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= gmp +DISTVERSION= 0.5-12 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Multiple Precision Arithmetic + +LICENSE= GPLv2+ + +LIB_DEPENDS= libgmp.so:math/gmp + +USES= cran:auto-plist + +.include Added: head/math/R-cran-gmp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-gmp/distinfo Fri Apr 29 06:56:37 2016 (r414258) @@ -0,0 +1,2 @@ +SHA256 (gmp_0.5-12.tar.gz) = aa4e6b0d0d64edfff166b7417e7c2782a1337905d667258d44ca881229dbd781 +SIZE (gmp_0.5-12.tar.gz) = 130077 Added: head/math/R-cran-gmp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-gmp/pkg-descr Fri Apr 29 06:56:37 2016 (r414258) @@ -0,0 +1,5 @@ +Multiple Precision Arithmetic (big integers and rationals, prime +number tests, matrix computation), "arithmetic without limitations" +using the C library GMP (GNU Multiple Precision Arithmetic). + +WWW: https://cran.r-project.org/web/packages/gmp/