Date: Thu, 31 Dec 2020 07:21:59 +0000 (UTC) From: Guangyuan Yang <ygy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559709 - in head/sysutils: . R-cran-processx Message-ID: <202012310721.0BV7LxZx007332@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ygy (doc committer) Date: Thu Dec 31 07:21:59 2020 New Revision: 559709 URL: https://svnweb.freebsd.org/changeset/ports/559709 Log: new port: sysutils/R-cran-processx: Execute and Control System Processes Approved by: lwhsu Added: head/sysutils/R-cran-processx/ head/sysutils/R-cran-processx/Makefile (contents, props changed) head/sysutils/R-cran-processx/distinfo (contents, props changed) head/sysutils/R-cran-processx/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Dec 31 07:20:52 2020 (r559708) +++ head/sysutils/Makefile Thu Dec 31 07:21:59 2020 (r559709) @@ -9,6 +9,7 @@ SUBDIR += 915resolution SUBDIR += LPRng SUBDIR += LPRngTool + SUBDIR += R-cran-processx SUBDIR += R-cran-ps SUBDIR += UEFITool SUBDIR += abduco Added: head/sysutils/R-cran-processx/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/R-cran-processx/Makefile Thu Dec 31 07:21:59 2020 (r559709) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= processx +DISTVERSION= 3.4.5 +CATEGORIES= sysutils +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= ygy@FreeBSD.org +COMMENT= Execute and Control System Processes + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= R-cran-R6>0:devel/R-cran-R6 \ + R-cran-ps>=1.2.0:sysutils/R-cran-ps +TEST_DEPENDS= R-cran-covr>0:devel/R-cran-covr \ + R-cran-crayon>0:devel/R-cran-crayon \ + R-cran-testthat>0:devel/R-cran-testthat \ + R-cran-withr>0:devel/R-cran-withr \ + R-cran-curl>0:ftp/R-cran-curl + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> Added: head/sysutils/R-cran-processx/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/R-cran-processx/distinfo Thu Dec 31 07:21:59 2020 (r559709) @@ -0,0 +1,3 @@ +TIMESTAMP = 1609275213 +SHA256 (processx_3.4.5.tar.gz) = e368103aa6a6894bfa8e78b12a25598464bcd2c19a8b6334f24ee397db13bb14 +SIZE (processx_3.4.5.tar.gz) = 135121 Added: head/sysutils/R-cran-processx/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/R-cran-processx/pkg-descr Thu Dec 31 07:21:59 2020 (r559709) @@ -0,0 +1,8 @@ +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. + +WWW: https://processx.r-lib.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012310721.0BV7LxZx007332>