summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-tclust/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-tclust/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-tclust/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-tclust/package.py b/var/spack/repos/builtin/packages/r-tclust/package.py
new file mode 100644
index 0000000000..0c07d18a56
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-tclust/package.py
@@ -0,0 +1,26 @@
+# Copyright 2013-2018 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 RTclust(RPackage):
+ """Provides functions for robust trimmed clustering."""
+
+ homepage = "https://cran.r-project.org/web/packages/tclust/index.html"
+ url = "https://cran.r-project.org/src/contrib/tclust_1.3-1.tar.gz"
+ list_url = "https://cran.rstudio.com/src/contrib/Archive/tclust"
+
+ version('1.3-1', '5415d74682588d4a6fb8ce166fc75661')
+ version('1.2-7', 'e32cd02819682cc944c7baaac3b6f2b7')
+ version('1.2-3', '922abc1abd8da4c6ac9830e1f2f71e84')
+ version('1.1-03', 'f1cc9278bdb068acce4623a9d98b7b62')
+ version('1.1-02', '6f206501b0341fb5623208d145984f5a')
+
+ depends_on('r@3.4.0:3.4.9')
+ depends_on('r-cluster', type=('build', 'run'))
+ depends_on('r-mclust', type=('build', 'run'))
+ depends_on('r-mvtnorm', type=('build', 'run'))
+ depends_on('r-sn', type=('build', 'run'))