summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-catools/package.py
blob: 9898ab68b358ab35e4483cfc3abd9c7bd44b67d9 (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
# 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 RCatools(RPackage):
    """Contains several basic utility functions including: moving (rolling,
    running) window statistic functions, read/write for GIF and ENVI binary
    files, fast calculation of AUC, LogitBoost classifier, base64
    encoder/decoder, round-off-error-free sum and cumsum, etc."""

    homepage = "https://cloud.r-project.org/package=caTools"
    url      = "https://cloud.r-project.org/src/contrib/caTools_1.17.1.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/caTools"

    version('1.17.1.2', sha256='69cc542fab5677462b1a768709d0c4a0a0790f5db53e1fe9ae7123787c18726b')
    version('1.17.1.1', sha256='d53e2c5c77f1bd4744703d7196dbc9b4671a120bbb5b9b3edc45fc57c0650c06')
    version('1.17.1', '5c872bbc78b177b306f36709deb44498')

    depends_on('r@2.2.0:', type=('build', 'run'))
    depends_on('r-bitops', type=('build', 'run'))