diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-18 12:54:22 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-18 12:54:22 -0600 |
commit | 563d93980407c9aafbfddca27f796fb2a76c9dbd (patch) | |
tree | 942066f0723c6b30354a2357b1788352ab86be7e | |
parent | e132195d6cb8c11ba2fcb5364c24d3a8043664d6 (diff) | |
download | spack-563d93980407c9aafbfddca27f796fb2a76c9dbd.tar.gz spack-563d93980407c9aafbfddca27f796fb2a76c9dbd.tar.bz2 spack-563d93980407c9aafbfddca27f796fb2a76c9dbd.tar.xz spack-563d93980407c9aafbfddca27f796fb2a76c9dbd.zip |
add version 2.0.2 to r-mnormt (#21115)
-rw-r--r-- | var/spack/repos/builtin/packages/r-mnormt/package.py | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/r-mnormt/package.py b/var/spack/repos/builtin/packages/r-mnormt/package.py index 6042626786..ae2e015d0a 100644 --- a/var/spack/repos/builtin/packages/r-mnormt/package.py +++ b/var/spack/repos/builtin/packages/r-mnormt/package.py @@ -7,17 +7,20 @@ from spack import * class RMnormt(RPackage): - """Functions are provided for computing the density and the distribution - function of multivariate normal and "t" random variables, and for - generating random vectors sampled from these distributions. - Probabilities are computed via non-Monte Carlo methods; different - routines are used in the case d=1, d=2, d>2, if d denotes the number - of dimensions.""" + """The Multivariate Normal and t Distributions, and Their Truncated Versions + + Functions are provided for computing the density and the distribution + function of multivariate normal and "t" random variables, and for + generating random vectors sampled from these distributions. Probabilities + are computed via non-Monte Carlo methods; different routines are used in + the case d=1, d=2, d>2, if d denotes the number of dimensions.""" homepage = "http://azzalini.stat.unipd.it/SW/Pkg-mnormt" url = "https://cloud.r-project.org/src/contrib/mnormt_1.5-5.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/mnormt" + version('2.0.2', sha256='5c6aa036d3f1035ffe8f9a8e95bb908b191b126b016591cf893c50472851f334') version('1.5-5', sha256='ff78d5f935278935f1814a69e5a913d93d6dd2ac1b5681ba86b30c6773ef64ac') depends_on('r@2.2.0:', type=('build', 'run')) + depends_on('r-tmvnsim@1.0-2:', when='@2.0.2:', type=('build', 'run')) |