New R package memuse (#22494)

This commit is contained in:
Desmond Orton 2021-03-25 18:22:09 -06:00 committed by GitHub
parent a2a29f8789
commit 728f62ec8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,24 @@
# Copyright 2013-2021 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 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."""
homepage = "https://github.com/shinra-dev/memuse"
cran = "memuse"
maintainers = ['dorton21']
version('4.1-0', sha256='58d6d1ca5d6bd481f4ed299eff6a9d5660eb0f8db1abe54c49e144093cba72ad')
depends_on('r@3.0.0:', type=('build', 'run'))