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
29
30
31
32
33
34
35
36
|
# 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 RRio(RPackage):
"""A Swiss-Army Knife for Data I/O.
Streamlined data import and export by making assumptions that the user
is probably willing to make: 'import()' and 'export()' determine the data
structure from the file extension, reasonable defaults are used for data
import and export (e.g., 'stringsAsFactors=FALSE'), web-based import is
natively supported (including from SSL/HTTPS), compressed files can be read
directly without explicit decompression, and fast import packages are used
where appropriate. An additional convenience function, 'convert()',
provides a simple method for converting between file types."""
cran = "rio"
license("GPL-2.0-only")
version("0.5.29", sha256="9fa63187e1814053e6ed2a164665b4924e08c3453adccb78f7211d403dcc5412")
version("0.5.16", sha256="d3eb8d5a11e0a3d26169bb9d08f834a51a6516a349854250629072d59c29d465")
depends_on("r@2.15.0:", type=("build", "run"))
depends_on("r-foreign", type=("build", "run"))
depends_on("r-haven@1.1.2:", type=("build", "run"), when="@0.5.26:")
depends_on("r-haven@1.1.0:", type=("build", "run"))
depends_on("r-curl@0.6:", type=("build", "run"))
depends_on("r-data-table@1.9.8:", type=("build", "run"))
depends_on("r-readxl@0.1.1:", type=("build", "run"))
depends_on("r-openxlsx", type=("build", "run"))
depends_on("r-tibble", type=("build", "run"))
|