From owner-svn-ports-head@freebsd.org Sun Apr 15 04:24:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E313AF92994; Sun, 15 Apr 2018 04:24:20 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9080976CC1; Sun, 15 Apr 2018 04:24:20 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6A2861D5D; Sun, 15 Apr 2018 04:24:20 +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 w3F4OKNL014046; Sun, 15 Apr 2018 04:24:20 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3F4OJj1014042; Sun, 15 Apr 2018 04:24:19 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201804150424.w3F4OJj1014042@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 15 Apr 2018 04:24:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467363 - in head/math: . R-cran-uroot X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-uroot X-SVN-Commit-Revision: 467363 X-SVN-Commit-Repository: ports 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.25 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: Sun, 15 Apr 2018 04:24:21 -0000 Author: tota Date: Sun Apr 15 04:24:19 2018 New Revision: 467363 URL: https://svnweb.freebsd.org/changeset/ports/467363 Log: - Add new port: math/R-cran-uroot Seasonal unit roots and seasonal stability tests. P-values based on response surface regressions are available for both tests. P-values based on bootstrap are available for seasonal unit root tests. A parallel implementation of the bootstrap method requires a CUDA capable GPU with compute capability >= 3.0, otherwise a debugging version fully coded in R is used. WWW: https://cran.r-project.org/web/packages/uroot/ Added: head/math/R-cran-uroot/ head/math/R-cran-uroot/Makefile (contents, props changed) head/math/R-cran-uroot/distinfo (contents, props changed) head/math/R-cran-uroot/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Apr 15 02:02:02 2018 (r467362) +++ head/math/Makefile Sun Apr 15 04:24:19 2018 (r467363) @@ -29,6 +29,7 @@ SUBDIR += R-cran-Rmpfr SUBDIR += R-cran-Rsolnp SUBDIR += R-cran-SparseM + SUBDIR += R-cran-uroot SUBDIR += R-cran-VGAM SUBDIR += R-cran-Zelig SUBDIR += R-cran-assertthat Added: head/math/R-cran-uroot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-uroot/Makefile Sun Apr 15 04:24:19 2018 (r467363) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= uroot +DISTVERSION= 2.0-9 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Unit Root Tests for Seasonal Time Series + +LICENSE= GPLv2 + +USES= cran:auto-plist,compiles + +.include Added: head/math/R-cran-uroot/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-uroot/distinfo Sun Apr 15 04:24:19 2018 (r467363) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523584257 +SHA256 (uroot_2.0-9.tar.gz) = 9b7616d64ed87b29ee45368bf7f08d15c0ec058e450c69171fbfecb44943ac5b +SIZE (uroot_2.0-9.tar.gz) = 1858590 Added: head/math/R-cran-uroot/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-uroot/pkg-descr Sun Apr 15 04:24:19 2018 (r467363) @@ -0,0 +1,8 @@ +Seasonal unit roots and seasonal stability tests. P-values based +on response surface regressions are available for both tests. +P-values based on bootstrap are available for seasonal unit root +tests. A parallel implementation of the bootstrap method requires +a CUDA capable GPU with compute capability >= 3.0, otherwise a +debugging version fully coded in R is used. + +WWW: https://cran.r-project.org/web/packages/uroot/