spack/var/spack/repos/builtin/packages/r-plot3d/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

25 lines
915 B
Python

# Copyright 2013-2024 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.package import *
class RPlot3d(RPackage):
"""Plotting Multi-Dimensional Data.
Functions for viewing 2-D and 3-D data, including perspective plots, slice
plots, surface plots, scatter plots, etc. Includes data sets from
oceanography."""
cran = "plot3D"
version("1.4", sha256="d04a45197646fb36bc38870c1c2351cb56b912bd772b1ebfa25eaeef35fda9c0")
version("1.3", sha256="b9e4ec2789e34ad249318900e186868650e1a33466b385cb492a45466db3dfc9")
version("1.1.1", sha256="f6fe4a001387132626fc553ed1d5720d448b8064eb5a6917458a798e1d381632")
depends_on("r+X", type=("build", "run"))
depends_on("r@2.15:", type=("build", "run"))
depends_on("r-misc3d", type=("build", "run"))