diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-04-19 12:20:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-19 17:20:44 +0000 |
commit | 7fffa4a1e6efeb38c2627922ebde2118a098570a (patch) | |
tree | 83dfdd82689de37fb17ce4a87a23f27d0495bad0 | |
parent | 8fce9bef7b89aa3af73c497805af93d500c0bafc (diff) | |
download | spack-7fffa4a1e6efeb38c2627922ebde2118a098570a.tar.gz spack-7fffa4a1e6efeb38c2627922ebde2118a098570a.tar.bz2 spack-7fffa4a1e6efeb38c2627922ebde2118a098570a.tar.xz spack-7fffa4a1e6efeb38c2627922ebde2118a098570a.zip |
r-brobdingnag: add new package (#23092)
-rw-r--r-- | var/spack/repos/builtin/packages/r-brobdingnag/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-brobdingnag/package.py b/var/spack/repos/builtin/packages/r-brobdingnag/package.py new file mode 100644 index 0000000000..ad32d3bca8 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-brobdingnag/package.py @@ -0,0 +1,21 @@ +# 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 RBrobdingnag(RPackage): + """Very Large Numbers in R: + + Handles very large numbers in R. Real numbers are held using their natural + logarithms, plus a logical flag indicating sign. The package includes a + vignette that gives a step-by-step introduction to using S4 methods.""" + + homepage = "https://github.com/RobinHankin/Brobdingnag.git" + cran = "Brobdingnag" + + version('1.2-6', sha256='19eccaed830ce9d93b70642f6f126ac66722a98bbd48586899cc613dd9966ad4') + + depends_on('r@2.13.0:', type=('build', 'run')) |