summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ellipsis/package.py
blob: 4f5349f3e589401f3eaf7e8d1a7350415fe56f63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2020 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 REllipsis(RPackage):
    """The ellipsis is a powerful tool for extending functions. Unfortunately
    this power comes at a cost: misspelled arguments will be silently ignored.
    The ellipsis package provides a collection of functions to catch problems
    and alert the user."""

    homepage = "https://github.com/r-lib/ellipsis"
    url      = "https://cloud.r-project.org/src/contrib/ellipsis_0.2.0.1.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/ellipsis"

    version('0.2.0.1', sha256='0e6528c5e8016c3617cc1cfcdb5a4bfeb073e0bd5ea76b43e56b0c3208a0a943')

    depends_on('r@3.1:', type=('build', 'run'))
    depends_on('r-rlang@0.3.0:', type=('build', 'run'))