svn commit: r449574 - in head/math: . R-cran-recipes

TAKATSU Tomonari tota at FreeBSD.org
Sun Sep 10 14:19:59 UTC 2017


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 <tota at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	recipes
+PORTVERSION=	0.1.0
+CATEGORIES=	math
+DISTNAME=	${PORTNAME}_${PORTVERSION}
+
+MAINTAINER=	tota at 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 <bsd.port.mk>

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/


More information about the svn-ports-all mailing list