summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDesmond Orton <odesmond21@gmail.com>2021-02-26 17:25:47 -0600
committerGitHub <noreply@github.com>2021-02-26 23:25:47 +0000
commit5492e549a537034cbab8ba63675e80452879d107 (patch)
tree3cbec020b1b5ae09d7f9650220615a4e3fc91bbd
parentb56d65fce5f4743a23399f0cde006bed1b52d53d (diff)
downloadspack-5492e549a537034cbab8ba63675e80452879d107.tar.gz
spack-5492e549a537034cbab8ba63675e80452879d107.tar.bz2
spack-5492e549a537034cbab8ba63675e80452879d107.tar.xz
spack-5492e549a537034cbab8ba63675e80452879d107.zip
New package r-spades-tools at 0.3.6 (#21783)
-rw-r--r--var/spack/repos/builtin/packages/r-spades-tools/package.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-spades-tools/package.py b/var/spack/repos/builtin/packages/r-spades-tools/package.py
new file mode 100644
index 0000000000..47369e9bd7
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-spades-tools/package.py
@@ -0,0 +1,39 @@
+# Copyright 2013-2021 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)
+
+from spack import *
+
+
+class RSpadesTools(RPackage):
+ """Tools for Spatially Explicit Discrete Event Simulation (SpaDES) Models
+
+ Provides GIS and map utilities, plus additional modeling tools for developing
+ cellular automata, dynamic raster models, and agent based models in 'SpaDES'.
+ Included are various methods for spatial spreading, spatial agents, GIS
+ operations, random map generation, and others. See '?SpaDES.tools' for an
+ categorized overview of these additional tools."""
+
+ homepage = "https://spades-tools.predictiveecology.org/"
+ url = "https://cloud.r-project.org/src/contrib/SpaDES.tools_0.3.6.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/SpaDES.tools"
+
+ maintainers = ['dorton21']
+
+ version('0.3.6', sha256='661f8ee792874e7447be78103775b63f18ec69e773a7b275dd977adb406dd3e5')
+
+ depends_on('r@3.5.0:', type=('build', 'run'))
+ depends_on('r-backports', type=('build', 'run'))
+ depends_on('r-checkmate@1.8.2:', type=('build', 'run'))
+ depends_on('r-circstats@0.2-4:', type=('build', 'run'))
+ depends_on('r-data-table@1.10.4:', type=('build', 'run'))
+ depends_on('r-fastmatch@1.1-0:', type=('build', 'run'))
+ depends_on('r-fpcompare@0.2.1:', type=('build', 'run'))
+ depends_on('r-magrittr', type=('build', 'run'))
+ depends_on('r-quickplot', type=('build', 'run'))
+ depends_on('r-raster@2.5-8:', type=('build', 'run'))
+ depends_on('r-rcpp@0.12.12:', type=('build', 'run'))
+ depends_on('r-reproducible@0.2.0:', type=('build', 'run'))
+ depends_on('r-rgeos', type=('build', 'run'))
+ depends_on('r-sp@1.2-4:', type=('build', 'run'))