summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-memuse/package.py
blob: e1abbbc6315efdde942e216d2158f7ddd6bd6465 (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
27
28
# Copyright 2013-2024 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.package import *


class RMemuse(RPackage):
    """Memory Estimation Utilities.

    How much ram do you need to store a 100,000 by 100,000 matrix? How much ram
    is your current R session using? How much ram do you even have?  Learn the
    scintillating answer to these and many more such questions with the
    'memuse' package."""

    cran = "memuse"

    maintainers("dorton21")

    license("BSD-2-Clause")

    version("4.2-3", sha256="906fdff665e2aed0e98ee3181233a5c62bd521abfce6ab1cb215c71c95d12620")
    version("4.2-2", sha256="63dc2b2ad41da9af5d9b71c1fa9b03f37d1d58db2ed63355c303349d2247b7e5")
    version("4.2-1", sha256="f5e9dbaad4efbbfe219a93f446e318a00cad5b294bfc60ca2146eca894b47cf3")
    version("4.1-0", sha256="58d6d1ca5d6bd481f4ed299eff6a9d5660eb0f8db1abe54c49e144093cba72ad")

    depends_on("r@3.0.0:", type=("build", "run"))