diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-17 13:38:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 13:38:28 -0600 |
commit | 251f16358b7fca0ed58fd1db8a3bfb700e539e05 (patch) | |
tree | 1f52cafdd93cd85cd601d0a8d182c16e073eddef | |
parent | 879a6622789a2aea2d5635f675068127475ccca3 (diff) | |
download | spack-251f16358b7fca0ed58fd1db8a3bfb700e539e05.tar.gz spack-251f16358b7fca0ed58fd1db8a3bfb700e539e05.tar.bz2 spack-251f16358b7fca0ed58fd1db8a3bfb700e539e05.tar.xz spack-251f16358b7fca0ed58fd1db8a3bfb700e539e05.zip |
add version 2.0-6 to r-gstat (#21037)
-rw-r--r-- | var/spack/repos/builtin/packages/r-gstat/package.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/r-gstat/package.py b/var/spack/repos/builtin/packages/r-gstat/package.py index ade337cf0c..5a29741d91 100644 --- a/var/spack/repos/builtin/packages/r-gstat/package.py +++ b/var/spack/repos/builtin/packages/r-gstat/package.py @@ -7,18 +7,24 @@ from spack import * class RGstat(RPackage): - """gstat: Spatial and Spatio-Temporal Geostatistical Modelling, - Predictionand Simulation""" + """Spatial and Spatio-Temporal Geostatistical Modelling, Predictionand + Simulation + + Variogram modelling; simple, ordinary and universal point or block + (co)kriging; spatio-temporal kriging; sequential Gaussian or indicator + (co)simulation; variogram and variogram map plotting utility functions; + supports sf and stars.""" homepage = "https://github.com/r-spatial/gstat/" url = "https://cloud.r-project.org/src/contrib/gstat_2.0-3.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/gstat" + version('2.0-6', sha256='6711e68aa2444cf2927879a03a976d8caeca5eac98d806b19a6a7178b90bfcab') version('2.0-3', sha256='20a93fe6bf89221a5888de273bddf9a98187806d507cd3cd6297c2b13e7acce1') depends_on('r@2.10:', type=('build', 'run')) - depends_on('r-fnn', type=('build', 'run')) depends_on('r-lattice', type=('build', 'run')) depends_on('r-sp@0.9-72:', type=('build', 'run')) - depends_on('r-spacetime@1.0-0:', type=('build', 'run')) depends_on('r-zoo', type=('build', 'run')) + depends_on('r-spacetime@1.0-0:', type=('build', 'run')) + depends_on('r-fnn', type=('build', 'run')) |