Skip to content

Commit

Permalink
add version 3.4.5 to r-processx (spack#20843)
Browse files Browse the repository at this point in the history
  • Loading branch information
glennpj authored Jan 15, 2021
1 parent bbc733b commit 699a1e7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions var/spack/repos/builtin/packages/r-processx/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,20 @@


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')
Expand All @@ -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'))

0 comments on commit 699a1e7

Please sign in to comment.