summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-r-methodss3/package.py
blob: e2887c572d8ffe04d6834b73674b88031df96402 (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
25
26
# 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 RRMethodss3(RPackage):
    """Methods that simplify the setup of S3 generic functions and
    S3 methods. Major effort has been made in making definition of
    methods as simple as possible with a minimum of maintenance for
    package developers. For example, generic functions are created
    automatically, if missing, and naming conflict are automatically
    solved, if possible. The method setMethodS3() is a good start
    for those who in the future may want to migrate to S4. This is
    a cross-platform package implemented in pure R that generates
    standard S3 methods."""

    homepage = "https://cloud.r-project.org/package=R.methodsS3"
    url      = "https://cloud.r-project.org/src/contrib/R.methodsS3_1.7.1.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/R.methodsS3"

    version('1.7.1', 'c88e815837f268affd4f2a39c737d969')

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