diff options
author | Jen Herting <jen@herting.cc> | 2021-08-05 18:05:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 17:05:21 -0500 |
commit | 0053117ac8cefc9db3556bd1b25e7626c64f1e9b (patch) | |
tree | b32bfc7fbdffd1d16e803ed13218632cb37b2837 /var | |
parent | c178000d18a0a62a7cd85378a599990f2298c25a (diff) | |
download | spack-0053117ac8cefc9db3556bd1b25e7626c64f1e9b.tar.gz spack-0053117ac8cefc9db3556bd1b25e7626c64f1e9b.tar.bz2 spack-0053117ac8cefc9db3556bd1b25e7626c64f1e9b.tar.xz spack-0053117ac8cefc9db3556bd1b25e7626c64f1e9b.zip |
New package: r-gparotation (#25277)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-gparotation/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-gparotation/package.py b/var/spack/repos/builtin/packages/r-gparotation/package.py new file mode 100644 index 0000000000..d4364e0b8c --- /dev/null +++ b/var/spack/repos/builtin/packages/r-gparotation/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 RGparotation(RPackage): + """Gradient Projection Algorithm Rotation for Factor Analysis. See + ?GPArotation.Intro for more details.""" + + homepage = "https://cloud.r-project.org/package=GPArotation" + url = "https://cloud.r-project.org/src/contrib/GPArotation_2014.11-1.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/GPArotation" + + version('2014.11-1', sha256='351bc15fc8dc6c8ea5045fbba22180d1e68314fc34d267545687748e312e5096') + + depends_on('r@2.0.0:', type=('build', 'run')) |