diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-17 11:35:23 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 11:35:23 -0600 |
commit | 6f27d20a583ef4e2ea1945a9a4ccecf61aeee9b1 (patch) | |
tree | 43b07b04ce5e5f7f0e8c8484156c8e53f48f9cd0 | |
parent | 92a665e07dd12e1b36df172c08ae8614ce0d1dff (diff) | |
download | spack-6f27d20a583ef4e2ea1945a9a4ccecf61aeee9b1.tar.gz spack-6f27d20a583ef4e2ea1945a9a4ccecf61aeee9b1.tar.bz2 spack-6f27d20a583ef4e2ea1945a9a4ccecf61aeee9b1.tar.xz spack-6f27d20a583ef4e2ea1945a9a4ccecf61aeee9b1.zip |
add version 1.5-9.4 to r-locfit (#21079)
-rw-r--r-- | var/spack/repos/builtin/packages/r-locfit/package.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r-locfit/package.py b/var/spack/repos/builtin/packages/r-locfit/package.py index 80c3d38aaf..e1d0518687 100644 --- a/var/spack/repos/builtin/packages/r-locfit/package.py +++ b/var/spack/repos/builtin/packages/r-locfit/package.py @@ -7,13 +7,19 @@ from spack import * class RLocfit(RPackage): - """Local regression, likelihood and density estimation.""" + """Local regression, likelihood and density estimation + + Local regression, likelihood and density estimation methods as described in + the 1999 book by Loader. + """ homepage = "https://cloud.r-project.org/package=locfit" url = "https://cloud.r-project.org/src/contrib/locfit_1.5-9.1.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/locfit" + version('1.5-9.4', sha256='d9d3665c5f3d49f698fb4675daf40a0550601e86db3dc00f296413ceb1099ced') version('1.5-9.1', sha256='f524148fdb29aac3a178618f88718d3d4ac91283014091aa11a01f1c70cd4e51') depends_on('r@2.0.1:', type=('build', 'run')) + depends_on('r@3.5.0:', when='@1.5-9.4:', type=('build', 'run')) depends_on('r-lattice', type=('build', 'run')) |