summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeorge Hartzell <hartzell@alerce.com>2017-07-15 09:08:36 -0700
committerMassimiliano Culpo <massimiliano.culpo@googlemail.com>2017-07-15 18:08:36 +0200
commitad2a22fa0124a9d824479303e3d38b33d9c8946c (patch)
treea31019ac17c3fe8ea139c8671734cb17def4e32d /var
parent8e6d7f117aa1e5f2e53bd2598a35a327d83b2cea (diff)
downloadspack-ad2a22fa0124a9d824479303e3d38b33d9c8946c.tar.gz
spack-ad2a22fa0124a9d824479303e3d38b33d9c8946c.tar.bz2
spack-ad2a22fa0124a9d824479303e3d38b33d9c8946c.tar.xz
spack-ad2a22fa0124a9d824479303e3d38b33d9c8946c.zip
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)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-ada/package.py37
-rw-r--r--var/spack/repos/builtin/packages/r-rpart/package.py2
2 files changed, 39 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-ada/package.py b/var/spack/repos/builtin/packages/r-ada/package.py
new file mode 100644
index 0000000000..27b1f8c95a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-ada/package.py
@@ -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'))
diff --git a/var/spack/repos/builtin/packages/r-rpart/package.py b/var/spack/repos/builtin/packages/r-rpart/package.py
index ea857ad926..9d2ed2df4d 100644
--- a/var/spack/repos/builtin/packages/r-rpart/package.py
+++ b/var/spack/repos/builtin/packages/r-rpart/package.py
@@ -31,7 +31,9 @@ class RRpart(RPackage):
homepage = "https://cran.r-project.org/package=rpart"
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')
depends_on('r@2.15.0:')