summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ggridges/package.py
blob: c5f686282db6651b2b3c17ccd56c7a9750e2c151 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2018 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 RGgridges(RPackage):
    """Ridgeline plots provide a convenient way of visualizing changes in
    distributions over time or space."""

    homepage = "https://cran.r-project.org/web/packages/ggridges/index.html"
    url      = "https://cran.r-project.org/src/contrib/ggridges_0.4.1.tar.gz"
    list_url = "https://cran.rstudio.com/src/contrib/Archive/ggridges"

    version('0.4.1', '21d53b3f7263beb17f629f0ebfb7b67a')
    version('0.4.0', 'da94ed1ee856a7fa5fb87712c84ec4c9')

    depends_on('r@3.4.0:3.4.9')
    depends_on('r-ggplot2', type=('build', 'run'))