summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-cubist/package.py
blob: a41928e6639d1997a6cc430851a2f4bd994d51da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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)

from spack import *


class RCubist(RPackage):
    """Regression modeling using rules with added instance-based corrections"""

    homepage = "https://cloud.r-project.org/package=Cubist"
    url      = "https://cloud.r-project.org/src/contrib/Cubist_0.0.19.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/Cubist"

    version('0.2.2', sha256='cd3e152cc72ab33f720a8fb6b8b6787171e1c037cfda48f1735ab692ed6d85d4')
    version('0.2.1', sha256='b310c3f166f15fa3e16f8d110d39931b0bb1b0aa8d0c9ac2af5a9a45081588a3')
    version('0.0.19', 'bf9364f655536ec03717fd2ad6223a47')

    depends_on('r-lattice', type=('build', 'run'))
    depends_on('r-reshape2', type=('build', 'run'))