summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJohann Gaebler <43016598+jgaeb@users.noreply.github.com>2023-09-07 01:08:27 -0400
committerGitHub <noreply@github.com>2023-09-07 01:08:27 -0400
commit65dd6e11969c5d880fad09c1d936a2651fa7d0cd (patch)
treea7f4f97d3131e6c6a194f96addbcacbcf6707143 /var
parenta43da48d235d1626ce4ac578efa14b93254e7a4d (diff)
downloadspack-65dd6e11969c5d880fad09c1d936a2651fa7d0cd.tar.gz
spack-65dd6e11969c5d880fad09c1d936a2651fa7d0cd.tar.bz2
spack-65dd6e11969c5d880fad09c1d936a2651fa7d0cd.tar.xz
spack-65dd6e11969c5d880fad09c1d936a2651fa7d0cd.zip
r-furrr: Add furrr R package. (#39814)
Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-furrr/package.py48
1 files changed, 48 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-furrr/package.py b/var/spack/repos/builtin/packages/r-furrr/package.py
new file mode 100644
index 0000000000..690cde5cc2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-furrr/package.py
@@ -0,0 +1,48 @@
+# Copyright 2013-2023 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 RFurrr(RPackage):
+ """Apply Mapping Functions in Parallel using Futures
+
+ Implementations of the family of map() functions from 'purrr' that can be
+ resolved using any 'future'-supported backend, e.g. parallel on the local
+ machine or distributed on a compute cluster."""
+
+ homepage = "https://furrr.futureverse.org"
+ cran = "furrr"
+
+ maintainers("jgaeb")
+
+ version("0.3.1", sha256="0d91735e2e9be759b1ab148d115c2c7429b79740514778828e5dab631dc0e48b")
+ version("0.3.0", sha256="3fe91cc1614f9404c708ea3a15b6a40289fa57f40f3ece54452093408d91fd84")
+ version("0.2.3", sha256="0a213422dc0a2e84173f2d3e6c7900dcb677f980c255d6b6ccf666fba1173700")
+ version("0.2.2", sha256="e5c10353dc47416eda870d16cf810c576f11bdc9e4c7277f7755581f3824cd4d")
+ version("0.2.1", sha256="07b3c98324aeb6a7e77a3d48c54fb90696a6e14efeee391cfc5e05f8dcd3469b")
+ version("0.2.0", sha256="9d6483656fdb5b90e998e2c2f1494c721185079a1412316c6d391e1eade89e1b")
+ version("0.1.0", sha256="dd2937f7cad1bc69e7a512b2a777f82d6cb7e40fe99afa2049ca360f9352a9d1")
+
+ depends_on("r@3.2.0:", type=("build", "run"), when="@0.1.0:")
+ depends_on("r@3.4.0:", type=("build", "run"), when="@0.3.0:")
+ depends_on("r-future@1.6.2:1.19.1", type=("build", "run"), when="@0.1.0")
+ depends_on("r-future@1.19.1:1.22.1", type=("build", "run"), when="@0.2.0:0.2.3")
+ depends_on("r-future@1.25.0:", type=("build", "run"), when="@0.3.0:")
+ depends_on("r-globals@0.10.3:", type=("build", "run"), when="@0.1.0:")
+ depends_on("r-globals@0.13.1:", type=("build", "run"), when="@0.2.0:")
+ depends_on("r-globals@0.14.0:", type=("build", "run"), when="@0.3.0:")
+ depends_on("r-rlang@0.2.0:", type=("build", "run"), when="@0.1.0:")
+ depends_on("r-rlang@0.3.0:", type=("build", "run"), when="@0.2.0:")
+ depends_on("r-rlang@1.0.2:", type=("build", "run"), when="@0.3.0:")
+ depends_on("r-purrr@0.2.4:", type=("build", "run"), when="@0.1.0:")
+ depends_on("r-purrr@0.3.0:", type=("build", "run"), when="@0.2.0:")
+ depends_on("r-purrr@0.3.4:", type=("build", "run"), when="@0.3.0:")
+ depends_on("r-ellipsis", type=("build", "run"), when="@0.2.0:0.3.0")
+ depends_on("r-lifecycle@0.2.0:", type=("build", "run"), when="@0.2.0:")
+ depends_on("r-lifecycle@1.0.0:", type=("build", "run"), when="@0.2.3:")
+ depends_on("r-lifecycle@1.0.1:", type=("build", "run"), when="@0.3.0:")
+ depends_on("r-vctrs@0.3.2:", type=("build", "run"), when="@0.2.0:")
+ depends_on("r-vctrs@0.4.1:", type=("build", "run"), when="@0.3.0:")