diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2018-12-07 11:24:43 -0600 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-12-07 11:24:43 -0600 |
commit | d72ba01a7148aa5d393c1b6ea4faa37fae2612e8 (patch) | |
tree | 1d4a200617673487c534c11fe659e5bef8a61281 | |
parent | 138d74f40ca3da8cd18e73576784c866906bf8e1 (diff) | |
download | spack-d72ba01a7148aa5d393c1b6ea4faa37fae2612e8.tar.gz spack-d72ba01a7148aa5d393c1b6ea4faa37fae2612e8.tar.bz2 spack-d72ba01a7148aa5d393c1b6ea4faa37fae2612e8.tar.xz spack-d72ba01a7148aa5d393c1b6ea4faa37fae2612e8.zip |
r-blockmodeling: new package at 0.3.1 (#10044)
-rw-r--r-- | var/spack/repos/builtin/packages/r-blockmodeling/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-blockmodeling/package.py b/var/spack/repos/builtin/packages/r-blockmodeling/package.py new file mode 100644 index 0000000000..5e4674e624 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-blockmodeling/package.py @@ -0,0 +1,22 @@ +# Copyright 2013-2018 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 RBlockmodeling(RPackage): + """blockmodeling: Generalized and Classical + Blockmodeling of Valued Networks""" + + homepage = "https://cran.r-project.org/package=blockmodeling" + url = "https://cran.rstudio.com/src/contrib/blockmodeling_0.3.1.tar.gz" + list_url = "https://cran.rstudio.com/src/contrib/Archive/blockmodeling/" + + version('0.3.1', sha256='39e8360400cec6baa920d5589d4e779568bdf2954f7331be0e3cadf22a217d31') + + depends_on('r-matrix', type=('build', 'run')) + depends_on('r-doparallel', type=('build', 'run')) + depends_on('r-dorng', type=('build', 'run')) + depends_on('r-foreach', type=('build', 'run')) |