summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-adegraphics/package.py
blob: 127bb020e833e7918e1c12a3dd99fe0cf82cadfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2013-2023 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 RAdegraphics(RPackage):
    """An S4 Lattice-Based Package for the Representation of Multivariate Data.

    Graphical functionalities for the representation of multivariate data.  It
    is a complete re-implementation of the functions available in the 'ade4'
    package."""

    cran = "adegraphics"

    license("GPL-2.0-or-later")

    version("1.0-18", sha256="8fe07fc0f73e9917e098de2ee8e6fdb3e07775446683b6222692a3298e4d563c")
    version("1.0-16", sha256="7ba59ce9aeefe1c25b4b118d08ef458ffd34115412c147cc428629e72a82ec3a")
    version("1.0-15", sha256="87bbcd072e9a898955f5ede4315e82365086a50a2887bf5bd2e94bbb4d3f678a")

    depends_on("r@3.0.2:", type=("build", "run"))
    depends_on("r-ade4@1.7-13:", type=("build", "run"))
    depends_on("r-kernsmooth", type=("build", "run"))
    depends_on("r-lattice", type=("build", "run"))
    depends_on("r-latticeextra", type=("build", "run"))
    depends_on("r-rcolorbrewer", type=("build", "run"))
    depends_on("r-sp@1.1-1:", type=("build", "run"))