summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-oo/package.py
blob: 6cba9eb491d70ed4f81c63da67582c079bb563b0 (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
# 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 ROo(RPackage):
    """Methods and classes for object-oriented programming in R with
    or without references. Large effort has been made on making
    definition of methods as simple as possible with a minimum of
    maintenance for package developers. The package has been developed
    since 2001 and is now considered very stable. This is a
    cross-platform package implemented in pure R that defines
    standard S3 classes without any tricks."""

    homepage = "https://github.com/HenrikBengtsson/R.oo"
    url      = "https://cran.rstudio.com/src/contrib/R.oo_1.21.0.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/R.oo"

    version('1.21.0', 'f0062095c763faaeba30558303f68bc3')

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