diff options
-rw-r--r-- | var/spack/repos/builtin/packages/r-statnet-common/package.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/r-statnet-common/package.py b/var/spack/repos/builtin/packages/r-statnet-common/package.py index a769dd10aa..a95216cb43 100644 --- a/var/spack/repos/builtin/packages/r-statnet-common/package.py +++ b/var/spack/repos/builtin/packages/r-statnet-common/package.py @@ -7,16 +7,20 @@ from spack import * class RStatnetCommon(RPackage): - """Non-statistical utilities used by the software developed by the - Statnet Project. They may also be of use to others.""" + """Common R Scripts and Utilities Used by the Statnet Project Software + + Non-statistical utilities used by the software developed by the Statnet + Project. They may also be of use to others.""" homepage = "http://www.statnet.org" url = "https://cloud.r-project.org/src/contrib/statnet.common_3.3.0.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/statnet.common" + version('4.4.1', sha256='4ecf2b84718d7fb60f196215b4cf6f52cd6b26cc9148a6da6981b26e885509fd') version('4.3.0', sha256='834a3359eac967df0420eee416ae4983e3b502a3de56bb24f494a7ca4104e959') version('4.2.0', sha256='1176c3303436ebe858d02979cf0a0c33e4e2d1f3637516b4761d573ccd132461') version('3.3.0', sha256='d714c4e7b0cbf71b7a628af443f5be530e74ad1e21f6b04f1b1087f6d7e40fa4') depends_on('r@3.5:', when='@4.2.0:', type=('build', 'run')) depends_on('r-coda', when='@4.1.2:', type=('build', 'run')) + depends_on('r-rle', when='@4.4.1:', type=('build', 'run')) |