diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-16 08:18:05 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-16 15:18:05 +0100 |
commit | 6683921988272956000654f845540a625814afbb (patch) | |
tree | 6fb63a605954114b81bbba98db757fc98f4e0e65 | |
parent | 4d8eb48a40511f0d80859bef69b82bbe7ac4dc57 (diff) | |
download | spack-6683921988272956000654f845540a625814afbb.tar.gz spack-6683921988272956000654f845540a625814afbb.tar.bz2 spack-6683921988272956000654f845540a625814afbb.tar.xz spack-6683921988272956000654f845540a625814afbb.zip |
add version 1.8.2 to r-dorng (#20949)
-rw-r--r-- | var/spack/repos/builtin/packages/r-dorng/package.py | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/var/spack/repos/builtin/packages/r-dorng/package.py b/var/spack/repos/builtin/packages/r-dorng/package.py index e789664f7a..637128a31f 100644 --- a/var/spack/repos/builtin/packages/r-dorng/package.py +++ b/var/spack/repos/builtin/packages/r-dorng/package.py @@ -7,25 +7,27 @@ from spack import * class RDorng(RPackage): - """Provides functions to perform reproducible parallel foreach loops, - using independent random streams as generated by L'Ecuyer's combined - multiple-recursive generator (L'Ecuyer (1999), - <doi:10.1287/opre.47.1.159>). + """Generic Reproducible Parallel Backend for 'foreach' Loops - It enables to easily convert standard %dopar% loops into fully - reproducible loops, independently of the number of workers, the task - scheduling strategy, or the chosen parallel environment and associated - foreach backend.""" + Provides functions to perform reproducible parallel foreach loops, using + independent random streams as generated by L'Ecuyer's combined + multiple-recursive generator (L'Ecuyer (1999), + <doi:10.1287/opre.47.1.159>). It enables to easily convert standard + %dopar% loops into fully reproducible loops, independently of the number of + workers, the task scheduling strategy, or the chosen parallel environment + and associated foreach backend.""" homepage = "https://cloud.r-project.org/package=doRNG" url = "https://cloud.r-project.org/src/contrib/doRNG_1.6.6.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/doRNG" + version('1.8.2', sha256='33e9d45b91b0fde2e35e911b9758d0c376049121a98a1e4c73a1edfcff11cec9') version('1.7.1', sha256='27533d54464889d1c21301594137fc0f536574e3a413d61d7df9463ab12a67e9') version('1.6.6', sha256='939c2282c72c0b89fc7510f4bff901a4e99007dc006f46762c8f594c0ecbd876') depends_on('r@3.0.0:', type=('build', 'run')) depends_on('r-foreach', type=('build', 'run')) depends_on('r-rngtools@1.3:', type=('build', 'run')) + depends_on('r-rngtools@1.5:', when='@1.8.2:', type=('build', 'run')) depends_on('r-iterators', type=('build', 'run')) - depends_on('r-pkgmaker@0.20:', type=('build', 'run')) + depends_on('r-pkgmaker@0.20:', when='@:1.7.1', type=('build', 'run')) |