diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/r-future/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/r-future/package.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/r-future/package.py b/var/spack/repos/builtin/packages/r-future/package.py index a8214cd9ea..d7a943e8f4 100644 --- a/var/spack/repos/builtin/packages/r-future/package.py +++ b/var/spack/repos/builtin/packages/r-future/package.py @@ -1,4 +1,4 @@ -# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# 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) @@ -7,7 +7,9 @@ from spack import * class RFuture(RPackage): - """The purpose of this package is to provide a lightweight and unified + """Unified Parallel and Distributed Processing in R for Everyone + + The purpose of this package is to provide a lightweight and unified Future API for sequential and parallel processing of R expression via futures. The simplest way to evaluate an expression in parallel is to use 'x %<-% { expression }' with 'plan(multiprocess)'. This package implements @@ -26,8 +28,12 @@ class RFuture(RPackage): url = "https://cloud.r-project.org/src/contrib/future_1.14.0.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/future" + version('1.21.0', sha256='909e6602068eba543a6d2e464b911123cc29efdb600a7000eff0e5624ff0d12d') version('1.14.0', sha256='0a535010d97a01b21aaf9d863603e44359335e273019c1e1980bbb5b2917dbcb') depends_on('r-digest', type=('build', 'run')) depends_on('r-globals@0.12.4:', type=('build', 'run')) + depends_on('r-globals@0.13.1:', when='@1.21.0:', type=('build', 'run')) depends_on('r-listenv@0.7.0:', type=('build', 'run')) + depends_on('r-listenv@0.8.0:', when='@1.21.0:', type=('build', 'run')) + depends_on('r-parallelly@1.21.0:', when='@1.21.0:', type=('build', 'run')) |