25 lines
1.0 KiB
Python
25 lines
1.0 KiB
Python
# Copyright 2013-2020 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://cloud.r-project.org/package=robust"
|
|
url = "https://cloud.r-project.org/src/contrib/robust_0.4-18.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/robust/"
|
|
|
|
version('0.4-18.1', sha256='de31901882873ef89748bb6863caf55734431df5b3eb3c6663ed17ee2e4a4077')
|
|
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'))
|