summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ada/package.py
blob: ef015df04e646941ecd083c9e9d1a78533c92471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 RAda(RPackage):
    """Performs discrete, real, and gentle boost under both exponential
    and logistic loss on a given data set."""

    homepage = "https://cloud.r-project.org/package=ada"
    url      = "https://cloud.r-project.org/src/contrib/ada_2.0-5.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/ada"

    version('2.0-5', '25ac0dc2650fba9e19f3d15c7c6721c1')

    depends_on('r@2.10:', type=('build', 'run'))
    depends_on('r-rpart', type=('build', 'run'))