diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2019-01-22 14:22:24 -0600 |
---|---|---|
committer | Levi Baber <baberlevi@gmail.com> | 2019-01-22 14:22:24 -0600 |
commit | e8014be01768693a50fc483a0b850c3c54521606 (patch) | |
tree | d89932e1d613e50de8a24ca46e34d11b093820ed | |
parent | 1bcc6e4d9c70b74e1181ecfb3c2eedc022339578 (diff) | |
download | spack-e8014be01768693a50fc483a0b850c3c54521606.tar.gz spack-e8014be01768693a50fc483a0b850c3c54521606.tar.bz2 spack-e8014be01768693a50fc483a0b850c3c54521606.tar.xz spack-e8014be01768693a50fc483a0b850c3c54521606.zip |
r-robust: new package at 0.4-18 (#10391)
-rw-r--r-- | var/spack/repos/builtin/packages/r-robust/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-robust/package.py b/var/spack/repos/builtin/packages/r-robust/package.py new file mode 100644 index 0000000000..3e83224ead --- /dev/null +++ b/var/spack/repos/builtin/packages/r-robust/package.py @@ -0,0 +1,23 @@ +# 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) +# See the Spack documentation for more information on packaging. + +from spack import * + + +class RRobust(RPackage): + """robust: Port of the S+ Robust Library """ + + homepage = "https://cran.r-project.org/package=robust" + url = "https://cran.r-project.org/src/contrib/robust_0.4-18.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/robust/" + + version('0.4-18', sha256='e4196f01bb3b0d768759d4411d524238b627eb8dc213d84cb30014e75480f8ac') + + depends_on('r-lattice', type=('build', 'run')) + depends_on('r-mass', type=('build', 'run')) + depends_on('r-robustbase', type=('build', 'run')) + depends_on('r-rrcov', type=('build', 'run')) + depends_on('r-fit-models', type=('build', 'run')) |