From owner-svn-ports-all@freebsd.org Sun Sep 10 12:42:38 2017 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 E7F96E0EE81; Sun, 10 Sep 2017 12:42:38 +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 ABD6771B3E; Sun, 10 Sep 2017 12:42:38 +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 v8ACgbMf004448; Sun, 10 Sep 2017 12:42:37 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8ACgbYd004443; Sun, 10 Sep 2017 12:42:37 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201709101242.v8ACgbYd004443@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 10 Sep 2017 12:42:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449541 - in head/math: . R-cran-RcppRoll X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-RcppRoll X-SVN-Commit-Revision: 449541 X-SVN-Commit-Repository: ports 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.23 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, 10 Sep 2017 12:42:39 -0000 Author: tota Date: Sun Sep 10 12:42:37 2017 New Revision: 449541 URL: https://svnweb.freebsd.org/changeset/ports/449541 Log: - Add new port: math/R-cran-RcppRoll Provides fast and efficient routines for common rolling / windowed operations. Routines for the efficient computation of windowed mean, median, sum, product, minimum, maximum, standard deviation and variance are provided. WWW: https://cran.r-project.org/web/packages/RcppRoll/ Added: head/math/R-cran-RcppRoll/ head/math/R-cran-RcppRoll/Makefile (contents, props changed) head/math/R-cran-RcppRoll/distinfo (contents, props changed) head/math/R-cran-RcppRoll/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Sep 10 12:17:03 2017 (r449540) +++ head/math/Makefile Sun Sep 10 12:42:37 2017 (r449541) @@ -75,6 +75,7 @@ SUBDIR += R-cran-quadprog SUBDIR += R-cran-qualityTools SUBDIR += R-cran-quantreg + SUBDIR += R-cran-RcppRoll SUBDIR += R-cran-rgenoud SUBDIR += R-cran-sandwich SUBDIR += R-cran-sf Added: head/math/R-cran-RcppRoll/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-RcppRoll/Makefile Sun Sep 10 12:42:37 2017 (r449541) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= RcppRoll +DISTVERSION= 0.2.2 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Efficient Rolling / Windowed Operations + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-Rcpp>0:devel/R-cran-Rcpp +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include Added: head/math/R-cran-RcppRoll/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-RcppRoll/distinfo Sun Sep 10 12:42:37 2017 (r449541) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505046201 +SHA256 (RcppRoll_0.2.2.tar.gz) = 51c76812687e2a8572c6037b0c095c0a30ee6a24783edf2c7c717d547ddfbfa7 +SIZE (RcppRoll_0.2.2.tar.gz) = 13680 Added: head/math/R-cran-RcppRoll/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-RcppRoll/pkg-descr Sun Sep 10 12:42:37 2017 (r449541) @@ -0,0 +1,6 @@ +Provides fast and efficient routines for common rolling / windowed +operations. Routines for the efficient computation of windowed mean, +median, sum, product, minimum, maximum, standard deviation and +variance are provided. + +WWW: https://cran.r-project.org/web/packages/RcppRoll/