1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 2013-2022 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.package import *
class RBlockmodeling(RPackage):
"""Generalized and Classical Blockmodeling of Valued Networks.
This is primarily meant as an implementation of generalized blockmodeling
for valued networks."""
cran = "blockmodeling"
version("1.0.5", sha256="18c227bb52f28aff4dae8929563474e3e006e238438c823b67dc6baa897f88ed")
version("1.0.0", sha256="f10c41fff56dc7dc46dffbceacb8ff905eca06578d610a5a590fb408f0149cfc")
version("0.3.4", sha256="a269c83669dd5294cff0adddab36bc023db6a276a06b74b1fa94b7e407486987")
version("0.3.1", sha256="39e8360400cec6baa920d5589d4e779568bdf2954f7331be0e3cadf22a217d31")
depends_on("r@2.10:", type=("build", "run"))
depends_on("r-matrix", type=("build", "run"))
depends_on("r-doparallel", type=("build", "run"), when="@:0.3.4")
depends_on("r-dorng", type=("build", "run"), when="@:0.3.4")
depends_on("r-foreach", type=("build", "run"), when="@:0.3.4")
|