From owner-svn-ports-head@freebsd.org Sun Sep 10 14:19:59 2017 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 CED9DE136FA; Sun, 10 Sep 2017 14:19:59 +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 A8EF375B6B; Sun, 10 Sep 2017 14:19:59 +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 v8AEJwni045096; Sun, 10 Sep 2017 14:19:58 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8AEJw2e045092; Sun, 10 Sep 2017 14:19:58 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201709101419.v8AEJw2e045092@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 14:19:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449574 - in head/math: . R-cran-recipes X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-recipes X-SVN-Commit-Revision: 449574 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.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: Sun, 10 Sep 2017 14:19:59 -0000 Author: tota Date: Sun Sep 10 14:19:58 2017 New Revision: 449574 URL: https://svnweb.freebsd.org/changeset/ports/449574 Log: - Add new port: math/R-cran-recipes An extensible framework to create and preprocess design matrices. Recipes consist of one or more data manipulation and analysis "steps". Statistical parameters for the steps can be estimated from an initial data set and then applied to other data sets. The resulting design matrices can then be used as inputs into statistical or machine learning models. WWW: https://cran.r-project.org/web/packages/recipes/ Added: head/math/R-cran-recipes/ head/math/R-cran-recipes/Makefile (contents, props changed) head/math/R-cran-recipes/distinfo (contents, props changed) head/math/R-cran-recipes/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Sep 10 14:05:33 2017 (r449573) +++ head/math/Makefile Sun Sep 10 14:19:58 2017 (r449574) @@ -77,6 +77,7 @@ SUBDIR += R-cran-qualityTools SUBDIR += R-cran-quantreg SUBDIR += R-cran-RcppRoll + SUBDIR += R-cran-recipes SUBDIR += R-cran-rgenoud SUBDIR += R-cran-sandwich SUBDIR += R-cran-sf Added: head/math/R-cran-recipes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-recipes/Makefile Sun Sep 10 14:19:58 2017 (r449574) @@ -0,0 +1,32 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= recipes +PORTVERSION= 0.1.0 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Preprocessing Tools to Create Design Matrices + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-dplyr>0:math/R-cran-dplyr \ + R-cran-tibble>0:devel/R-cran-tibble \ + R-cran-ipred>0:math/R-cran-ipred \ + R-cran-dimRed>=0.1.0:math/R-cran-dimRed \ + R-cran-lubridate>0:devel/R-cran-lubridate \ + R-cran-timeDate>0:finance/R-cran-timeDate \ + R-cran-ddalpha>0:math/R-cran-ddalpha \ + R-cran-purrr>0:devel/R-cran-purrr \ + R-cran-rlang>=0.1.1:devel/R-cran-rlang \ + R-cran-gower>0:math/R-cran-gower \ + R-cran-RcppRoll>0:math/R-cran-RcppRoll \ + R-cran-tidyselect>=0.1.1:devel/R-cran-tidyselect \ + R-cran-magrittr>0:devel/R-cran-magrittr +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include Added: head/math/R-cran-recipes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-recipes/distinfo Sun Sep 10 14:19:58 2017 (r449574) @@ -0,0 +1,3 @@ +TIMESTAMP = 1504921818 +SHA256 (recipes_0.1.0.tar.gz) = 6ba689b5101f54d8b32844ee15cf0e8f4cee471e62fc3f36ab1d463c0099cd67 +SIZE (recipes_0.1.0.tar.gz) = 523958 Added: head/math/R-cran-recipes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-recipes/pkg-descr Sun Sep 10 14:19:58 2017 (r449574) @@ -0,0 +1,8 @@ +An extensible framework to create and preprocess design matrices. +Recipes consist of one or more data manipulation and analysis +"steps". Statistical parameters for the steps can be estimated from +an initial data set and then applied to other data sets. The resulting +design matrices can then be used as inputs into statistical or +machine learning models. + +WWW: https://cran.r-project.org/web/packages/recipes/