summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-04-20 04:35:03 -0500
committerGitHub <noreply@github.com>2021-04-20 11:35:03 +0200
commitcbf7ad8cc03f9a84dc7792a992e872056fe871e3 (patch)
treee304c83a61b0f0f7acfc1a0296dc359565a98d80 /var
parent80e60ceb91790f9f9eefb37d5e515bf818178269 (diff)
downloadspack-cbf7ad8cc03f9a84dc7792a992e872056fe871e3.tar.gz
spack-cbf7ad8cc03f9a84dc7792a992e872056fe871e3.tar.bz2
spack-cbf7ad8cc03f9a84dc7792a992e872056fe871e3.tar.xz
spack-cbf7ad8cc03f9a84dc7792a992e872056fe871e3.zip
r-fastica: new package (#23096)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-fastica/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-fastica/package.py b/var/spack/repos/builtin/packages/r-fastica/package.py
new file mode 100644
index 0000000000..03e8c56193
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-fastica/package.py
@@ -0,0 +1,19 @@
+# Copyright 2013-2021 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 RFastica(RPackage):
+ """FastICA Algorithms to Perform ICA and Projection Pursuit:
+
+ Implementation of FastICA algorithm to perform Independent Component
+ Analysis (ICA) and Projection Pursuit."""
+
+ cran = "fastICA"
+
+ version('1.2-2', sha256='32223593374102bf54c8fdca7b57231e4f4d0dd0be02d9f3500ad41b1996f1fe')
+
+ depends_on('r@3.0.0:', type=('build', 'run'))