summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-diffobj/package.py
blob: 5167b76fe891238cba6b60d911d97b5d3794860a (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-2022 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 RDiffobj(RPackage):
    """Diffs for R Objects

    Generate a colorized diff of two R objects for an intuitive visualization
    of their differences."""

    homepage = "https://github.com/brodieG/diffobj"
    cran = "diffobj"

    version('0.3.5', sha256='d860a79b1d4c9e369282d7391b539fe89228954854a65ba47181407c53e3cf60')
    version('0.3.3', sha256='414e5573470b9565b9149a0a61c7e8344fb37f889d23dc4e131acc8aa62e6df4')

    depends_on('r@3.1.0:', type=('build', 'run'))
    depends_on('r-crayon@1.3.2:', type=('build', 'run'))