svn commit: r440460 - in head/devel: . R-cran-rgexf

TAKATSU Tomonari tota at FreeBSD.org
Mon May 8 22:35:59 UTC 2017


Author: tota
Date: Mon May  8 22:35:57 2017
New Revision: 440460
URL: https://svnweb.freebsd.org/changeset/ports/440460

Log:
  - Add new port: devel/R-cran-rgexf
  
    Create, read and write GEXF (Graph Exchange XML Format) graph files
    (used in Gephi and others). Using the XML package, it allows the
    user to easily build/read graph files including attributes, GEXF
    viz attributes (such as color, size, and position), network dynamics
    (for both edges and nodes) and edge weighting. Users can build/handle
    graphs element-by-element or massively through data-frames, visualize
    the graph on a web browser through "sigmajs" (a javascript library)
    and interact with the igraph package.
  
    WWW: https://cran.r-project.org/web/packages/rgexf/

Added:
  head/devel/R-cran-rgexf/
  head/devel/R-cran-rgexf/Makefile   (contents, props changed)
  head/devel/R-cran-rgexf/distinfo   (contents, props changed)
  head/devel/R-cran-rgexf/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile   (contents, props changed)

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon May  8 20:32:01 2017	(r440459)
+++ head/devel/Makefile	Mon May  8 22:35:57 2017	(r440460)
@@ -45,6 +45,7 @@
     SUBDIR += R-cran-registry
     SUBDIR += R-cran-reshape
     SUBDIR += R-cran-reshape2
+    SUBDIR += R-cran-rgexf
     SUBDIR += R-cran-rngtools
     SUBDIR += R-cran-rprojroot
     SUBDIR += R-cran-rstudioapi

Added: head/devel/R-cran-rgexf/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-rgexf/Makefile	Mon May  8 22:35:57 2017	(r440460)
@@ -0,0 +1,22 @@
+# Created by: TAKATSU Tomonari <tota at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	rgexf
+PORTVERSION=	0.15.3
+CATEGORIES=	devel
+DISTNAME=	${PORTNAME}_${DISTVERSION}
+
+MAINTAINER=	tota at FreeBSD.org
+COMMENT=	Build, Import and Export GEXF Graph Files
+
+LICENSE=	GPLv3
+
+CRAN_DEPENDS=	R-cran-XML>0:textproc/R-cran-XML \
+		R-cran-Rook>0:www/R-cran-Rook \
+		R-cran-igraph>0:math/R-cran-igraph
+BUILD_DEPENDS=	${CRAN_DEPENDS}
+RUN_DEPENDS=	${CRAN_DEPENDS}
+
+USES=		cran:auto-plist,compiles
+
+.include <bsd.port.mk>

Added: head/devel/R-cran-rgexf/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-rgexf/distinfo	Mon May  8 22:35:57 2017	(r440460)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1494149377
+SHA256 (rgexf_0.15.3.tar.gz) = 2e8a7978d1fb977318e6310ba65b70a9c8890185c819a7951ac23425c6dc8147
+SIZE (rgexf_0.15.3.tar.gz) = 447723

Added: head/devel/R-cran-rgexf/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-rgexf/pkg-descr	Mon May  8 22:35:57 2017	(r440460)
@@ -0,0 +1,10 @@
+Create, read and write GEXF (Graph Exchange XML Format) graph files
+(used in Gephi and others). Using the XML package, it allows the
+user to easily build/read graph files including attributes, GEXF
+viz attributes (such as color, size, and position), network dynamics
+(for both edges and nodes) and edge weighting. Users can build/handle
+graphs element-by-element or massively through data-frames, visualize
+the graph on a web browser through "sigmajs" (a javascript library)
+and interact with the igraph package.
+
+WWW: https://cran.r-project.org/web/packages/rgexf/


More information about the svn-ports-all mailing list