blob: 7d7a7b2c12cda810882644da111753f52dfef7ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2013-2021 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 REllipse(RPackage):
"""This package contains various routines for drawing ellipses and
ellipse-like confidence regions."""
homepage = "https://cloud.r-project.org/package=ellipse"
url = "https://cloud.r-project.org/src/contrib/ellipse_0.3-8.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/ellipse"
version('0.4.1', sha256='1a9a9c52195b26c2b4d51ad159ab98aff7aa8ca25fdc6b2198818d1a0adb023d')
version('0.3-8', sha256='508d474c142f0770c25763d6c8f8f8c9dcf8205afd42ffa22e6be1e0360e7f45')
depends_on('r@2.0.0:', type=('build', 'run'))
|