add version 3.4.5 to r-processx (#20843)

This commit is contained in:
Glenn Johnson 2021-01-15 03:42:57 -06:00 committed by GitHub
parent bbc733b84c
commit 699a1e7c86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,12 +7,20 @@
class RProcessx(RPackage): 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" homepage = "https://github.com/r-lib/processx"
url = "https://cloud.r-project.org/src/contrib/processx_3.2.0.tar.gz" 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" 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.4.1', sha256='f1abddb48fa78f2b176552e2ec5d808d4d87d79ce72e9b3d25c9a7d715bbd1bc')
version('3.3.1', sha256='6123dbdf9f3bb6e5e8678980fb4587dcefb56d2190adf2ef494d7cd199720bae') version('3.3.1', sha256='6123dbdf9f3bb6e5e8678980fb4587dcefb56d2190adf2ef494d7cd199720bae')
version('3.2.0', sha256='c4ba602fcbdc032ae9d94701b3e6b83a2dab1b53d0b4f9937b07a84eae22fddf') version('3.2.0', sha256='c4ba602fcbdc032ae9d94701b3e6b83a2dab1b53d0b4f9937b07a84eae22fddf')
@ -21,8 +29,8 @@ class RProcessx(RPackage):
version('2.0.0.1', sha256='8f61b2952d0f2d13c74465bfba174ce11eee559475c2f7b9be6bcb9e2e1d827b') version('2.0.0.1', sha256='8f61b2952d0f2d13c74465bfba174ce11eee559475c2f7b9be6bcb9e2e1d827b')
version('2.0.0', sha256='8325b56a60a276909228756281523cda9256bc754c5f3ca03b41c5c17cc398ad') 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-ps@1.2.0:', when='@3.2.0:', type=('build', 'run'))
depends_on('r-r6', 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')) depends_on('r-debugme', when='@:3.0.9', type=('build', 'run'))