summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-shape/package.py
blob: 67851868f13f3d647f7987c857a39f98a073df08 (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-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 RShape(RPackage):
    """Functions for plotting graphical shapes such as ellipses, circles,
       cylinders, arrows, ..."""

    homepage = "https://cloud.r-project.org/package=shape"
    url      = "https://cloud.r-project.org/src/contrib/shape_1.4.3.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/shape"

    version('1.4.4', sha256='f4cb1b7d7c84cf08d2fa97f712ea7eb53ed5fa16e5c7293b820bceabea984d41')
    version('1.4.3', '2a807bf95e7decc71478f805221852da')
    version('1.4.2', '75557c43a385b9cc0c4dff361af6e06c')

    depends_on('r@2.0.1:', type=('build', 'run'))