summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-01-16 08:10:57 -0600
committerGitHub <noreply@github.com>2021-01-16 15:10:57 +0100
commitd409004f70d9e0cb0151e090a52081a790ca49df (patch)
tree10e3bbfa9b793067af58b22287b8ed640a9e3b50
parent6acfca4635b51e88503fd2752fa7559c5c9b9c5c (diff)
downloadspack-d409004f70d9e0cb0151e090a52081a790ca49df.tar.gz
spack-d409004f70d9e0cb0151e090a52081a790ca49df.tar.bz2
spack-d409004f70d9e0cb0151e090a52081a790ca49df.tar.xz
spack-d409004f70d9e0cb0151e090a52081a790ca49df.zip
new package: r-isoband (#20993)
-rw-r--r--var/spack/repos/builtin/packages/r-isoband/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-isoband/package.py b/var/spack/repos/builtin/packages/r-isoband/package.py
new file mode 100644
index 0000000000..e8ed5f19e9
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-isoband/package.py
@@ -0,0 +1,22 @@
+# 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 RIsoband(RPackage):
+ """Generate Isolines and Isobands from Regularly Spaced Elevation Grids
+
+ A fast C++ implementation to generate contour lines (isolines) and contour
+ polygons (isobands) from regularly spaced grids containing elevation
+ data."""
+
+ homepage = "https://github.com/wilkelab/isoband"
+ url = "https://cloud.r-project.org/src/contrib/isoband_0.2.3.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/isoband"
+
+ version('0.2.3', sha256='f9d3318fdf6d147dc2e2c7015ea7de42a55fa33d6232b952f982df96066b7ffe')
+
+ depends_on('r-testthat', type=('build', 'run'))