diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-11-01 03:37:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-31 21:37:26 -0500 |
commit | 543e5480a19b9f72b1eae439086d8c92f6ccb9c9 (patch) | |
tree | 75c298156f5d2d2fe392183fbe065832a906c2ea /var | |
parent | f8be56c94159814f9261bcafb6a75e8b2e2153f2 (diff) | |
download | spack-543e5480a19b9f72b1eae439086d8c92f6ccb9c9.tar.gz spack-543e5480a19b9f72b1eae439086d8c92f6ccb9c9.tar.bz2 spack-543e5480a19b9f72b1eae439086d8c92f6ccb9c9.tar.xz spack-543e5480a19b9f72b1eae439086d8c92f6ccb9c9.zip |
r-googledrive: add new package (#27095)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-googledrive/package.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-googledrive/package.py b/var/spack/repos/builtin/packages/r-googledrive/package.py new file mode 100644 index 0000000000..f4c92a0f20 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-googledrive/package.py @@ -0,0 +1,33 @@ +# 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 RGoogledrive(RPackage): + """An Interface to Google Drive. + + Manage Google Drive files from R.""" + + homepage = "https://github.com/tidyverse/googledrive" + cran = "googledrive" + + version('2.0.0', sha256='605c469a6a086ef4b049909c2e20a35411c165ce7ce4f62d68fd39ffed8c5a26') + + depends_on('r@3.3:', type=('build', 'run')) + depends_on('r-cli@3.0.0:', type=('build', 'run')) + depends_on('r-gargle@1.2.0:', type=('build', 'run')) + depends_on('r-glue@1.4.2:', type=('build', 'run')) + depends_on('r-httr', type=('build', 'run')) + depends_on('r-jsonlite', type=('build', 'run')) + depends_on('r-lifecycle', type=('build', 'run')) + depends_on('r-magrittr', type=('build', 'run')) + depends_on('r-pillar', type=('build', 'run')) + depends_on('r-purrr@0.2.3:', type=('build', 'run')) + depends_on('r-rlang@0.4.9:', type=('build', 'run')) + depends_on('r-tibble@2.0.0:', type=('build', 'run')) + depends_on('r-uuid', type=('build', 'run')) + depends_on('r-vctrs@0.3.0:', type=('build', 'run')) + depends_on('r-withr', type=('build', 'run')) |