From owner-svn-ports-all@freebsd.org Sun Sep 10 08:32:33 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 19296E04451; Sun, 10 Sep 2017 08:32:33 +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 DB1AF6B165; Sun, 10 Sep 2017 08:32:32 +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 v8A8WVpJ001634; Sun, 10 Sep 2017 08:32:31 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8A8WV3s001630; Sun, 10 Sep 2017 08:32:31 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201709100832.v8A8WV3s001630@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 08:32:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449525 - in head/math: . R-cran-DRR X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-DRR X-SVN-Commit-Revision: 449525 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 08:32:33 -0000 Author: tota Date: Sun Sep 10 08:32:31 2017 New Revision: 449525 URL: https://svnweb.freebsd.org/changeset/ports/449525 Log: - Add new port: math/R-cran-DRR An Implementation of Dimensionality Reduction via Regression using Kernel Ridge Regression. WWW: https://cran.r-project.org/web/packages/DRR/ Added: head/math/R-cran-DRR/ head/math/R-cran-DRR/Makefile (contents, props changed) head/math/R-cran-DRR/distinfo (contents, props changed) head/math/R-cran-DRR/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Sep 10 08:19:51 2017 (r449524) +++ head/math/Makefile Sun Sep 10 08:32:31 2017 (r449525) @@ -8,6 +8,7 @@ SUBDIR += R SUBDIR += R-cran-Amelia SUBDIR += R-cran-ChangeAnomalyDetection + SUBDIR += R-cran-DRR SUBDIR += R-cran-Formula SUBDIR += R-cran-KFAS SUBDIR += R-cran-LearnBayes Added: head/math/R-cran-DRR/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-DRR/Makefile Sun Sep 10 08:32:31 2017 (r449525) @@ -0,0 +1,21 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= DRR +PORTVERSION= 0.0.2 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Dimensionality Reduction via Regression + +LICENSE= GPLv3 + +CRAN_DEPENDS= R-cran-kernlab>0:science/R-cran-kernlab \ + R-cran-CVST>0:math/R-cran-CVST +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include Added: head/math/R-cran-DRR/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-DRR/distinfo Sun Sep 10 08:32:31 2017 (r449525) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505024562 +SHA256 (DRR_0.0.2.tar.gz) = 02860f05f97a6020012fb6ebfe0d7738dd9e9db0555326f1ef57199fcde58ee9 +SIZE (DRR_0.0.2.tar.gz) = 116827 Added: head/math/R-cran-DRR/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-DRR/pkg-descr Sun Sep 10 08:32:31 2017 (r449525) @@ -0,0 +1,4 @@ +An Implementation of Dimensionality Reduction via Regression using +Kernel Ridge Regression. + +WWW: https://cran.r-project.org/web/packages/DRR/