diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-18 16:58:08 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-18 16:58:08 -0600 |
commit | c7d3651356f9d708ace626c7b0e3a02401cea40d (patch) | |
tree | 29f0af4dc781462d4d8dd52336597d08bb62737a | |
parent | cec784bb103df102fde2942e0bc2cd2c5225deda (diff) | |
download | spack-c7d3651356f9d708ace626c7b0e3a02401cea40d.tar.gz spack-c7d3651356f9d708ace626c7b0e3a02401cea40d.tar.bz2 spack-c7d3651356f9d708ace626c7b0e3a02401cea40d.tar.xz spack-c7d3651356f9d708ace626c7b0e3a02401cea40d.zip |
add version 0.3.17 to r-inline (#21053)
* add version 0.3.17 to r-inline
* Drop R version constraint
A really old version of R was specified in the 0.3.14 and 0.3.15
versions of r-inline. This constraint was dropped in the 0.3.17 version.
Drop it from the spack recipe as well.
-rw-r--r-- | var/spack/repos/builtin/packages/r-inline/package.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/r-inline/package.py b/var/spack/repos/builtin/packages/r-inline/package.py index b6aa178994..13d5eed74a 100644 --- a/var/spack/repos/builtin/packages/r-inline/package.py +++ b/var/spack/repos/builtin/packages/r-inline/package.py @@ -7,7 +7,9 @@ from spack import * class RInline(RPackage): - """Functionality to dynamically define R functions and S4 methods with + """Functions to Inline C, C++, Fortran Function Calls from R + + Functionality to dynamically define R functions and S4 methods with inlined C, C++ or Fortran code supporting .C and .Call calling conventions.""" @@ -15,7 +17,6 @@ class RInline(RPackage): url = "https://cloud.r-project.org/src/contrib/inline_0.3.14.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/inline" + version('0.3.17', sha256='792857b2ebd408d6523424d2f6bb7297e241d4b28ab32372f6a9240c8cd554f3') version('0.3.15', sha256='ff043fe13c1991a3b285bed256ff4a9c0ba10bee764225a34b285875b7d69c68') version('0.3.14', sha256='fd34d6bf965148d26d983a022a0ff7bc1a5831f6ca066deee3f6139894dfc931') - - depends_on('r@2.4.0:', type=('build', 'run')) |