r-rio: add 0.5.29 (#27838)

This commit is contained in:
Manuela Kuhn 2021-12-08 00:56:24 +01:00 committed by GitHub
parent 0337bb50d9
commit 1314273a42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,9 @@
class RRio(RPackage):
"""Streamlined data import and export by making assumptions that the user
"""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
@ -17,13 +19,14 @@ class RRio(RPackage):
provides a simple method for converting between file types."""
homepage = "https://github.com/leeper/rio"
url = "https://cloud.r-project.org/src/contrib/rio_0.5.16.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/rio"
cran = "rio"
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:', when='@0.5.26:', type=('build', 'run'))
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'))