From cb258daf88a0ef0ab4e23da26f5bd01c1f9349a8 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Sun, 8 Dec 2019 09:06:04 -0600 Subject: [PATCH] Add new r-graphlayouts package (#14046) --- .../packages/r-graphlayouts/package.py | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 var/spack/repos/builtin/packages/r-graphlayouts/package.py diff --git a/var/spack/repos/builtin/packages/r-graphlayouts/package.py b/var/spack/repos/builtin/packages/r-graphlayouts/package.py new file mode 100644 index 00000000000..1aacbf25f8b --- /dev/null +++ b/var/spack/repos/builtin/packages/r-graphlayouts/package.py @@ -0,0 +1,27 @@ +# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class RGraphlayouts(RPackage): + """graphlayouts: Additional Layout Algorithms for Network Visualizations. + + Several new layout algorithms to visualize networks are provided which are + not part of 'igraph'. Most are based on the concept of stress majorization + by Gansner et al. (2004) . Some more + specific algorithms allow to emphasize hidden group structures in networks + or focus on specific nodes.""" + + homepage = "https://github.com/schochastics/graphlayouts" + url = "https://cloud.r-project.org/src/contrib/graphlayouts_0.5.0.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/graphlayouts" + + version('0.5.0', sha256='83f61ce07580c5a64c7044c12b20d98ccf138c7e78ff12855cdfc206e1fab10d') + + depends_on('r@3.2.0:', type=('build', 'run')) + depends_on('r-igraph', type=('build', 'run')) + depends_on('r-rcpp', type=('build', 'run')) + depends_on('r-rcpparmadillo', type=('build', 'run'))