diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-15 02:13:30 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 09:13:30 +0100 |
commit | 05906ab57ea66f0985e8b0947cc1a57dcf3860e9 (patch) | |
tree | 936d6381931d1788a365326de174889d00538851 | |
parent | ed4dea2dc2de7466a2779cbf08b2e5c493bfc80f (diff) | |
download | spack-05906ab57ea66f0985e8b0947cc1a57dcf3860e9.tar.gz spack-05906ab57ea66f0985e8b0947cc1a57dcf3860e9.tar.bz2 spack-05906ab57ea66f0985e8b0947cc1a57dcf3860e9.tar.xz spack-05906ab57ea66f0985e8b0947cc1a57dcf3860e9.zip |
r-expint: add v0.1-6 (#20917)
-rw-r--r-- | var/spack/repos/builtin/packages/r-expint/package.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r-expint/package.py b/var/spack/repos/builtin/packages/r-expint/package.py index 6199324756..cae67e7a86 100644 --- a/var/spack/repos/builtin/packages/r-expint/package.py +++ b/var/spack/repos/builtin/packages/r-expint/package.py @@ -8,12 +8,21 @@ from spack import * class RExpint(RPackage): - """expint: Exponential Integral and Incomplete Gamma Function""" + """Exponential Integral and Incomplete Gamma Function + + The exponential integrals E_1(x), E_2(x), E_n(x) and Ei(x), and the + incomplete gamma function G(a, x) defined for negative values of its first + argument. The package also gives easy access to the underlying C routines + through an API; see the package vignette for details. A test package + included in sub-directory example_API provides an implementation. C + routines derived from the GNU Scientific Library + <https://www.gnu.org/software/gsl/>.""" homepage = "https://cloud.r-project.org/package=expint" url = "https://cloud.r-project.org/src/contrib/expint_0.1-5.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/expint" + version('0.1-6', sha256='c7d13a8e299a91e94622047fe22b0006137e7bf82e34d10871b631fa58115145') version('0.1-5', sha256='b03d60938cd6cf615aa3a02b1bf73436785eca89eaff56059ee0807b8244718a') depends_on('r@3.3.0:', type=('build', 'run')) |