pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc R-processx: initial commit



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bf2b92064795
branches:  trunk
changeset: 337654:bf2b92064795
user:      brook <brook%pkgsrc.org@localhost>
date:      Fri Aug 09 19:03:17 2019 +0000

description:
R-processx: initial commit

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.

diffstat:

 doc/CHANGES-2019             |   3 ++-
 sysutils/Makefile            |   3 ++-
 sysutils/R-processx/DESCR    |   7 +++++++
 sysutils/R-processx/Makefile |  16 ++++++++++++++++
 sysutils/R-processx/distinfo |   6 ++++++
 5 files changed, 33 insertions(+), 2 deletions(-)

diffs (72 lines):

diff -r 2b263a344cd5 -r bf2b92064795 doc/CHANGES-2019
--- a/doc/CHANGES-2019  Fri Aug 09 19:02:20 2019 +0000
+++ b/doc/CHANGES-2019  Fri Aug 09 19:03:17 2019 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-2019,v 1.3358 2019/08/09 19:02:20 brook Exp $
+$NetBSD: CHANGES-2019,v 1.3359 2019/08/09 19:03:17 brook Exp $
 
 Changes to the packages collection and infrastructure in 2019:
 
@@ -5481,3 +5481,4 @@
        Added devel/R-testthat version 2.2.1 [brook 2019-08-09]
        Added devel/R-desc version 1.2.0 [brook 2019-08-09]
        Added security/R-askpass version 1.1 [brook 2019-08-09]
+       Added sysutils/R-processx version 3.4.1 [brook 2019-08-09]
diff -r 2b263a344cd5 -r bf2b92064795 sysutils/Makefile
--- a/sysutils/Makefile Fri Aug 09 19:02:20 2019 +0000
+++ b/sysutils/Makefile Fri Aug 09 19:03:17 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.824 2019/08/09 18:38:11 brook Exp $
+# $NetBSD: Makefile,v 1.825 2019/08/09 19:03:17 brook Exp $
 #
 
 COMMENT=       System utilities
@@ -6,6 +6,7 @@
 SUBDIR+=       855resolution
 SUBDIR+=       915resolution
 SUBDIR+=       9base
+SUBDIR+=       R-processx
 SUBDIR+=       R-progress
 SUBDIR+=       R-ps
 SUBDIR+=       R-sys
diff -r 2b263a344cd5 -r bf2b92064795 sysutils/R-processx/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/R-processx/DESCR Fri Aug 09 19:03:17 2019 +0000
@@ -0,0 +1,7 @@
+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.
diff -r 2b263a344cd5 -r bf2b92064795 sysutils/R-processx/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/R-processx/Makefile      Fri Aug 09 19:03:17 2019 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1 2019/08/09 19:03:18 brook Exp $
+
+R_PKGNAME=     processx
+R_PKGVER=      3.4.1
+CATEGORIES=    sysutils
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+COMMENT=       Execute and control system processes
+LICENSE=       mit
+
+DEPENDS+=      R-ps>=1.2.0:../../sysutils/R-ps
+
+USE_LANGUAGES= c
+
+.include "../../math/R/Makefile.extension"
+.include "../../mk/bsd.pkg.mk"
diff -r 2b263a344cd5 -r bf2b92064795 sysutils/R-processx/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/R-processx/distinfo      Fri Aug 09 19:03:17 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/08/09 19:03:18 brook Exp $
+
+SHA1 (R/processx_3.4.1.tar.gz) = 4728b0ac981c8f25f6cdb4fa21487bf4796e6ca0
+RMD160 (R/processx_3.4.1.tar.gz) = 25db2dbcaa85384b0083faad41f9452654a7220a
+SHA512 (R/processx_3.4.1.tar.gz) = 28c0cbab94a4c59ccc827f7e6458d497ef6119e9ef9471713bde357bbca246369d2f2944b16754ff971937efa302d464b1931a8e7a20631665dde761f63375c7
+Size (R/processx_3.4.1.tar.gz) = 123430 bytes



Home | Main Index | Thread Index | Old Index