From owner-svn-ports-all@freebsd.org Fri Jul 22 23:42:51 2016 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 09530BA1BEF; Fri, 22 Jul 2016 23:42:51 +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 D476414BC; Fri, 22 Jul 2016 23:42:50 +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 u6MNgobJ043162; Fri, 22 Jul 2016 23:42:50 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6MNgnfV043158; Fri, 22 Jul 2016 23:42:49 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201607222342.u6MNgnfV043158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Fri, 22 Jul 2016 23:42:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418937 - in head/math: . R-cran-influenceR X-SVN-Group: ports-head 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.22 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: Fri, 22 Jul 2016 23:42:51 -0000 Author: tota Date: Fri Jul 22 23:42:49 2016 New Revision: 418937 URL: https://svnweb.freebsd.org/changeset/ports/418937 Log: - Add new port: math/R-cran-influenceR influenceR: Software Tools to Quantify Structural Importance of Nodes in a Network Provides functionality to compute various node centrality measures on networks. Included are functions to compute betweenness centrality (by utilizing Madduri and Bader's SNAP library), implementations of Burt's constraint and effective network size (ENS) metrics, Borgatti's algorithm to identify key players, and Valente's bridging metric. On Unix systems, the betweenness, Key Players, and bridging implementations are parallelized with OpenMP, which may run faster on systems which have OpenMP configured. WWW: https://cran.r-project.org/web/packages/influenceR/ Added: head/math/R-cran-influenceR/ head/math/R-cran-influenceR/Makefile (contents, props changed) head/math/R-cran-influenceR/distinfo (contents, props changed) head/math/R-cran-influenceR/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Jul 22 21:33:46 2016 (r418936) +++ head/math/Makefile Fri Jul 22 23:42:49 2016 (r418937) @@ -40,6 +40,7 @@ SUBDIR += R-cran-gss SUBDIR += R-cran-gtable SUBDIR += R-cran-igraph + SUBDIR += R-cran-influenceR SUBDIR += R-cran-inline SUBDIR += R-cran-irlba SUBDIR += R-cran-labeling Added: head/math/R-cran-influenceR/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-influenceR/Makefile Fri Jul 22 23:42:49 2016 (r418937) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= influenceR +PORTVERSION= 0.1.0 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Software Tools to Quantify Structural Importance of Nodes in a Network + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-igraph>0:math/R-cran-igraph +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include Added: head/math/R-cran-influenceR/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-influenceR/distinfo Fri Jul 22 23:42:49 2016 (r418937) @@ -0,0 +1,3 @@ +TIMESTAMP = 1469186410 +SHA256 (influenceR_0.1.0.tar.gz) = 4fc9324179bd8896875fc0e879a8a96b9ef2a6cf42a296c3b7b4d9098519e98a +SIZE (influenceR_0.1.0.tar.gz) = 23498 Added: head/math/R-cran-influenceR/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-influenceR/pkg-descr Fri Jul 22 23:42:49 2016 (r418937) @@ -0,0 +1,13 @@ +influenceR: Software Tools to Quantify Structural Importance of +Nodes in a Network + +Provides functionality to compute various node centrality measures +on networks. Included are functions to compute betweenness centrality +(by utilizing Madduri and Bader's SNAP library), implementations +of Burt's constraint and effective network size (ENS) metrics, +Borgatti's algorithm to identify key players, and Valente's bridging +metric. On Unix systems, the betweenness, Key Players, and bridging +implementations are parallelized with OpenMP, which may run faster +on systems which have OpenMP configured. + +WWW: https://cran.r-project.org/web/packages/influenceR/