diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2018-12-07 20:21:40 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2018-12-07 18:21:40 -0800 |
commit | 3955f7cba58c458e6a2ee465f87ac832eb1d9916 (patch) | |
tree | add6770bad9cbc7f26e3bdc0475cb6dfc4d2e596 | |
parent | 892ae2043f00dae2cd371f150bee994c3e83e63a (diff) | |
download | spack-3955f7cba58c458e6a2ee465f87ac832eb1d9916.tar.gz spack-3955f7cba58c458e6a2ee465f87ac832eb1d9916.tar.bz2 spack-3955f7cba58c458e6a2ee465f87ac832eb1d9916.tar.xz spack-3955f7cba58c458e6a2ee465f87ac832eb1d9916.zip |
r-expint: new package at 0.1-5 (#10043)
-rw-r--r-- | var/spack/repos/builtin/packages/r-expint/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-expint/package.py b/var/spack/repos/builtin/packages/r-expint/package.py new file mode 100644 index 0000000000..17b27b079b --- /dev/null +++ b/var/spack/repos/builtin/packages/r-expint/package.py @@ -0,0 +1,19 @@ +# 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) +# See the Spack documentation for more information on packaging. + +from spack import * + + +class RExpint(RPackage): + """expint: Exponential Integral and Incomplete Gamma Function""" + + homepage = "https://cran.r-project.org/package=expint" + url = "https://cran.r-project.org/src/contrib/expint_0.1-5.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/expint" + + version('0.1-5', sha256='b03d60938cd6cf615aa3a02b1bf73436785eca89eaff56059ee0807b8244718a') + + depends_on('r@3.3.0:', type=('build', 'run')) |