diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-15 03:42:57 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 10:42:57 +0100 |
commit | 699a1e7c86eebaeb2c3a90f323377ca53c1be8ab (patch) | |
tree | 431d5a566adc082397ccc7f67e3175281e0f747d | |
parent | bbc733b84c7022e5f505e481bcd2d4c0af4259ca (diff) | |
download | spack-699a1e7c86eebaeb2c3a90f323377ca53c1be8ab.tar.gz spack-699a1e7c86eebaeb2c3a90f323377ca53c1be8ab.tar.bz2 spack-699a1e7c86eebaeb2c3a90f323377ca53c1be8ab.tar.xz spack-699a1e7c86eebaeb2c3a90f323377ca53c1be8ab.zip |
add version 3.4.5 to r-processx (#20843)
-rw-r--r-- | var/spack/repos/builtin/packages/r-processx/package.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/r-processx/package.py b/var/spack/repos/builtin/packages/r-processx/package.py index d097b9d977..fedf36d281 100644 --- a/var/spack/repos/builtin/packages/r-processx/package.py +++ b/var/spack/repos/builtin/packages/r-processx/package.py @@ -7,12 +7,20 @@ from spack import * class RProcessx(RPackage): - """Tools to run system processes in the background""" + """Execute and Control System Processes + + Tools to run system processes in the background. It can check if a + background process is running; wait on a background process to finish; get + the exit status of finished processes; kill background processes. It can + read the standard output and error of the processes, using non-blocking + connections. 'processx' can poll a process for standard output or error, + with a timeout. It can also poll several processes at once.""" homepage = "https://github.com/r-lib/processx" url = "https://cloud.r-project.org/src/contrib/processx_3.2.0.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/processx" + version('3.4.5', sha256='e368103aa6a6894bfa8e78b12a25598464bcd2c19a8b6334f24ee397db13bb14') version('3.4.1', sha256='f1abddb48fa78f2b176552e2ec5d808d4d87d79ce72e9b3d25c9a7d715bbd1bc') version('3.3.1', sha256='6123dbdf9f3bb6e5e8678980fb4587dcefb56d2190adf2ef494d7cd199720bae') version('3.2.0', sha256='c4ba602fcbdc032ae9d94701b3e6b83a2dab1b53d0b4f9937b07a84eae22fddf') @@ -21,8 +29,8 @@ class RProcessx(RPackage): version('2.0.0.1', sha256='8f61b2952d0f2d13c74465bfba174ce11eee559475c2f7b9be6bcb9e2e1d827b') version('2.0.0', sha256='8325b56a60a276909228756281523cda9256bc754c5f3ca03b41c5c17cc398ad') - depends_on('r-assertthat', when='@:3.2.9', type=('build', 'run')) - depends_on('r-crayon', when='@:3.2.9', type=('build', 'run')) depends_on('r-ps@1.2.0:', when='@3.2.0:', type=('build', 'run')) depends_on('r-r6', type=('build', 'run')) + depends_on('r-assertthat', when='@:3.2.9', type=('build', 'run')) + depends_on('r-crayon', when='@:3.2.9', type=('build', 'run')) depends_on('r-debugme', when='@:3.0.9', type=('build', 'run')) |