summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-intervals/package.py
blob: 72e6295a213865daf6ce52bdba71d164347b34ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 RIntervals(RPackage):
    """Tools for Working with Points and Intervals

    Tools for working with and comparing sets of points and intervals."""

    homepage = "https://github.com/edzer/intervals"
    url      = "https://cloud.r-project.org/src/contrib/intervals_0.15.1.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/intervals"

    version('0.15.2', sha256='0bd23b0ce817ddd851238233d8a5420bf3a6d29e75fd361418cbc50118777c57')
    version('0.15.1', sha256='9a8b3854300f2055e1492c71932cc808b02feac8c4d3dbf6cba1c7dbd09f4ae4')

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