summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDesmond Orton <odesmond21@gmail.com>2021-02-01 18:02:14 -0600
committerGitHub <noreply@github.com>2021-02-01 18:02:14 -0600
commit6cc23e61373a0b34a80e96cc1c9a590ea0247b24 (patch)
tree8b5f21fa7c7c45a9d7b65174fbee91426832f473 /var
parenteac95c866ab16983b0d1a5c00c64e895b3a6df3c (diff)
downloadspack-6cc23e61373a0b34a80e96cc1c9a590ea0247b24.tar.gz
spack-6cc23e61373a0b34a80e96cc1c9a590ea0247b24.tar.bz2
spack-6cc23e61373a0b34a80e96cc1c9a590ea0247b24.tar.xz
spack-6cc23e61373a0b34a80e96cc1c9a590ea0247b24.zip
New Feature r-quickplot (#21430)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-quickplot/package.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-quickplot/package.py b/var/spack/repos/builtin/packages/r-quickplot/package.py
new file mode 100644
index 0000000000..4b014288f6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-quickplot/package.py
@@ -0,0 +1,36 @@
+# 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 RQuickplot(RPackage):
+ """A System of Plotting Optimized for Speed and Modularity
+
+ A high-level plotting system, built using 'grid' graphics, that
+ is optimized for speed and modularity. This has great utility
+ for quick visualizations when testing code, with the key benefit
+ that visualizations are updated independently of one another."""
+
+ homepage = "http://quickplot.predictiveecology.org/"
+ url = "https://cloud.r-project.org/src/contrib/quickPlot_0.1.6.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/quickPlot"
+
+ maintainers = ['dorton21']
+
+ version('0.1.6', sha256='48690a77ae961ed1032130621ef06b2eaf86ee592bf1057471a8c6d6a98ace55')
+
+ depends_on('r@3.3.0:', type=('build', 'run'))
+ depends_on('r-backports', type=('build', 'run'))
+ depends_on('r-data-table@1.10.4:', type=('build', 'run'))
+ depends_on('r-fpcompare', type=('build', 'run'))
+ depends_on('r-ggplot2', type=('build', 'run'))
+ depends_on('r-gridbase', type=('build', 'run'))
+ depends_on('r-igraph', type=('build', 'run'))
+ depends_on('r-raster', type=('build', 'run'))
+ depends_on('r-rcolorbrewer', type=('build', 'run'))
+ depends_on('r-rgdal', type=('build', 'run'))
+ depends_on('r-rgeos', type=('build', 'run'))
+ depends_on('r-sp', type=('build', 'run'))