From owner-svn-ports-head@freebsd.org Mon Oct 10 12:49:51 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 C8C1AC0B17D; Mon, 10 Oct 2016 12:49:51 +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 8A352B7; Mon, 10 Oct 2016 12:49:51 +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 u9ACnoR7073867; Mon, 10 Oct 2016 12:49:50 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9ACnot5073863; Mon, 10 Oct 2016 12:49:50 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201610101249.u9ACnot5073863@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Oct 2016 12:49:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423659 - in head/math: . R-cran-numDeriv 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.23 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: Mon, 10 Oct 2016 12:49:51 -0000 Author: tota Date: Mon Oct 10 12:49:50 2016 New Revision: 423659 URL: https://svnweb.freebsd.org/changeset/ports/423659 Log: - Add new port: math/R-cran-numDeriv Methods for calculating (usually) accurate numerical first and second order derivatives. Accurate calculations are done using 'Richardson"s' extrapolation or, when applicable, a complex step derivative is available. A simple difference method is also provided. Simple difference is (usually) less accurate but is much quicker than 'Richardson"s' extrapolation and provides a useful cross-check. Methods are provided for real scalar and vector valued functions. WWW: https://cran.r-project.org/web/packages/numDeriv/ Added: head/math/R-cran-numDeriv/ head/math/R-cran-numDeriv/Makefile (contents, props changed) head/math/R-cran-numDeriv/distinfo (contents, props changed) head/math/R-cran-numDeriv/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Mon Oct 10 12:43:44 2016 (r423658) +++ head/math/Makefile Mon Oct 10 12:49:50 2016 (r423659) @@ -55,6 +55,7 @@ SUBDIR += R-cran-nloptr SUBDIR += R-cran-nnls SUBDIR += R-cran-nortest + SUBDIR += R-cran-numDeriv SUBDIR += R-cran-outliers SUBDIR += R-cran-pbkrtest SUBDIR += R-cran-psych Added: head/math/R-cran-numDeriv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-numDeriv/Makefile Mon Oct 10 12:49:50 2016 (r423659) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= numDeriv +DISTVERSION= 2016.8-1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Accurate Numerical Derivatives + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include Added: head/math/R-cran-numDeriv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-numDeriv/distinfo Mon Oct 10 12:49:50 2016 (r423659) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475924566 +SHA256 (numDeriv_2016.8-1.tar.gz) = 1b681d273697dc780a3ac5bedabb4a257785732d9ca4ef68e4e4aac8b328d11e +SIZE (numDeriv_2016.8-1.tar.gz) = 76303 Added: head/math/R-cran-numDeriv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-numDeriv/pkg-descr Mon Oct 10 12:49:50 2016 (r423659) @@ -0,0 +1,9 @@ +Methods for calculating (usually) accurate numerical first and +second order derivatives. Accurate calculations are done using +'Richardson"s' extrapolation or, when applicable, a complex step +derivative is available. A simple difference method is also provided. +Simple difference is (usually) less accurate but is much quicker +than 'Richardson"s' extrapolation and provides a useful cross-check. +Methods are provided for real scalar and vector valued functions. + +WWW: https://cran.r-project.org/web/packages/numDeriv/