Add package for r-ada, update r-rpart version (#4772)
* Add package for r-ada, update r-rpart version Adds a package for r-ada. Update the version for r-rpart because the previous version is no longer at that URL. The previous version *is* in the Archive, but list_url does not seem to be able to find it. * Clean up FIXMEs (blush)
This commit is contained in:
parent
8e6d7f117a
commit
ad2a22fa01
37
var/spack/repos/builtin/packages/r-ada/package.py
Normal file
37
var/spack/repos/builtin/packages/r-ada/package.py
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
##############################################################################
|
||||||
|
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
|
||||||
|
# Produced at the Lawrence Livermore National Laboratory.
|
||||||
|
#
|
||||||
|
# This file is part of Spack.
|
||||||
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
||||||
|
# LLNL-CODE-647188
|
||||||
|
#
|
||||||
|
# For details, see https://github.com/llnl/spack
|
||||||
|
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License (as
|
||||||
|
# published by the Free Software Foundation) version 2.1, February 1999.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
||||||
|
# conditions of the GNU Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public
|
||||||
|
# License along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
##############################################################################
|
||||||
|
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://cran.r-project.org/web/packages/ada/index.html"
|
||||||
|
url = "https://cran.r-project.org/src/contrib/ada_2.0-5.tar.gz"
|
||||||
|
|
||||||
|
version('2.0-5', '25ac0dc2650fba9e19f3d15c7c6721c1')
|
||||||
|
|
||||||
|
depends_on('r-rpart', type=('build', 'run'))
|
@ -31,7 +31,9 @@ class RRpart(RPackage):
|
|||||||
|
|
||||||
homepage = "https://cran.r-project.org/package=rpart"
|
homepage = "https://cran.r-project.org/package=rpart"
|
||||||
url = "https://cran.r-project.org/src/contrib/rpart_4.1-10.tar.gz"
|
url = "https://cran.r-project.org/src/contrib/rpart_4.1-10.tar.gz"
|
||||||
|
list_url = "https://cran.r-project.org/src/contrib/Archive/rpart"
|
||||||
|
|
||||||
|
version('4.1-11', 'f77b37cddf7e9a7b5993a52a750b8817')
|
||||||
version('4.1-10', '15873cded4feb3ef44d63580ba3ca46e')
|
version('4.1-10', '15873cded4feb3ef44d63580ba3ca46e')
|
||||||
|
|
||||||
depends_on('r@2.15.0:')
|
depends_on('r@2.15.0:')
|
||||||
|
Loading…
Reference in New Issue
Block a user