From owner-svn-ports-head@freebsd.org Tue Aug 11 19:50:41 2015 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 7ED9299F1BE; Tue, 11 Aug 2015 19:50:41 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 6F384AD7; Tue, 11 Aug 2015 19:50:41 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJoff7007612; Tue, 11 Aug 2015 19:50:41 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJoegI007606; Tue, 11 Aug 2015 19:50:40 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508111950.t7BJoegI007606@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 11 Aug 2015 19:50:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393969 - in head/math: . R-cran-NMF X-SVN-Group: ports-head 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.20 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: Tue, 11 Aug 2015 19:50:41 -0000 Author: tota Date: Tue Aug 11 19:50:39 2015 New Revision: 393969 URL: https://svnweb.freebsd.org/changeset/ports/393969 Log: - Add new port: math/R-cran-NMF Provides a framework to perform Non-negative Matrix Factorization (NMF). The package implements a set of already published algorithms and seeding methods, and provides a framework to test, develop and plug new/custom algorithms. Most of the built-in algorithms have been optimized in C++, and the main interface function provides an easy way of performing parallel computations on multicore machines. WWW: https://cran.r-project.org/web/packages/NMF/ Added: head/math/R-cran-NMF/ head/math/R-cran-NMF/Makefile (contents, props changed) head/math/R-cran-NMF/distinfo (contents, props changed) head/math/R-cran-NMF/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Aug 11 19:49:30 2015 (r393968) +++ head/math/Makefile Tue Aug 11 19:50:39 2015 (r393969) @@ -11,6 +11,7 @@ SUBDIR += R-cran-KFAS SUBDIR += R-cran-LearnBayes SUBDIR += R-cran-MCMCpack + SUBDIR += R-cran-NMF SUBDIR += R-cran-RHmm SUBDIR += R-cran-RSvgDevice SUBDIR += R-cran-RcppArmadillo Added: head/math/R-cran-NMF/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-NMF/Makefile Tue Aug 11 19:50:39 2015 (r393969) @@ -0,0 +1,30 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= NMF +PORTVERSION= 0.20.6 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Algorithms and Framework for Nonnegative Matrix Factorization + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +RUN_DEPENDS= R-cran-pkgmaker>=0.20:${PORTSDIR}/devel/R-cran-pkgmaker \ + R-cran-registry>0:${PORTSDIR}/devel/R-cran-registry \ + R-cran-rngtools>=1.2.3:${PORTSDIR}/devel/R-cran-rngtools \ + R-cran-stringr>=1.0.0:${PORTSDIR}/textproc/R-cran-stringr \ + R-cran-digest>0:${PORTSDIR}/security/R-cran-digest \ + R-cran-gridBase>0:${PORTSDIR}/graphics/R-cran-gridBase \ + R-cran-colorspace>0:${PORTSDIR}/graphics/R-cran-colorspace \ + R-cran-RColorBrewer>0:${PORTSDIR}/graphics/R-cran-RColorBrewer \ + R-cran-foreach>0:${PORTSDIR}/devel/R-cran-foreach \ + R-cran-doParallel>0:${PORTSDIR}/devel/R-cran-doParallel \ + R-cran-ggplot2>0:${PORTSDIR}/graphics/R-cran-ggplot2 \ + R-cran-reshape2>0:${PORTSDIR}/devel/R-cran-reshape2 + +USES= cran:auto-plist + +.include Added: head/math/R-cran-NMF/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-NMF/distinfo Tue Aug 11 19:50:39 2015 (r393969) @@ -0,0 +1,2 @@ +SHA256 (NMF_0.20.6.tar.gz) = dfccd4b4d6ec90cd7628fd128d2456d792f406cee4d32b13448dcb0ffe4ab056 +SIZE (NMF_0.20.6.tar.gz) = 1764466 Added: head/math/R-cran-NMF/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-NMF/pkg-descr Tue Aug 11 19:50:39 2015 (r393969) @@ -0,0 +1,8 @@ +Provides a framework to perform Non-negative Matrix Factorization +(NMF). The package implements a set of already published algorithms +and seeding methods, and provides a framework to test, develop and +plug new/custom algorithms. Most of the built-in algorithms have +been optimized in C++, and the main interface function provides an +easy way of performing parallel computations on multicore machines. + +WWW: https://cran.r-project.org/web/packages/NMF/