summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-gridextra/package.py
blob: c37978e0b184c3055abee556170acfd7385f7627 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2019 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 RGridextra(RPackage):
    """Provides a number of user-level functions to work with "grid" graphics,
    notably to arrange multiple grid-based plots on a page, and draw tables."""

    homepage = "https://cloud.r-project.org/package=gridExtra"
    url      = "https://cloud.r-project.org/src/contrib/gridExtra_2.2.1.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/gridExtras"

    version('2.3', sha256='81b60ce6f237ec308555471ae0119158b115463df696d2eca9b177ded8988e3b')
    version('2.2.1', sha256='44fe455a5bcdf48a4ece7a542f83e7749cf251dc1df6ae7634470240398c6818')

    depends_on('r-gtable', type=('build', 'run'))