pkgsrc-Changes archive

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

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   brook
Date:           Fri Aug  9 19:03:18 UTC 2019

Modified Files:
        pkgsrc/doc: CHANGES-2019
        pkgsrc/sysutils: Makefile
Added Files:
        pkgsrc/sysutils/R-processx: DESCR Makefile distinfo

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.3358 -r1.3359 pkgsrc/doc/CHANGES-2019
cvs rdiff -u -r1.824 -r1.825 pkgsrc/sysutils/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/R-processx/DESCR \
    pkgsrc/sysutils/R-processx/Makefile pkgsrc/sysutils/R-processx/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/doc/CHANGES-2019
diff -u pkgsrc/doc/CHANGES-2019:1.3358 pkgsrc/doc/CHANGES-2019:1.3359
--- pkgsrc/doc/CHANGES-2019:1.3358      Fri Aug  9 19:02:20 2019
+++ pkgsrc/doc/CHANGES-2019     Fri Aug  9 19:03:17 2019
@@ -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 @@ Changes to the packages collection and i
        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]

Index: pkgsrc/sysutils/Makefile
diff -u pkgsrc/sysutils/Makefile:1.824 pkgsrc/sysutils/Makefile:1.825
--- pkgsrc/sysutils/Makefile:1.824      Fri Aug  9 18:38:11 2019
+++ pkgsrc/sysutils/Makefile    Fri Aug  9 19:03:17 2019
@@ -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 @@ COMMENT=        System utilities
 SUBDIR+=       855resolution
 SUBDIR+=       915resolution
 SUBDIR+=       9base
+SUBDIR+=       R-processx
 SUBDIR+=       R-progress
 SUBDIR+=       R-ps
 SUBDIR+=       R-sys

Added files:

Index: pkgsrc/sysutils/R-processx/DESCR
diff -u /dev/null pkgsrc/sysutils/R-processx/DESCR:1.1
--- /dev/null   Fri Aug  9 19:03:18 2019
+++ pkgsrc/sysutils/R-processx/DESCR    Fri Aug  9 19:03:18 2019
@@ -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.
Index: pkgsrc/sysutils/R-processx/Makefile
diff -u /dev/null pkgsrc/sysutils/R-processx/Makefile:1.1
--- /dev/null   Fri Aug  9 19:03:18 2019
+++ pkgsrc/sysutils/R-processx/Makefile Fri Aug  9 19:03:18 2019
@@ -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"
Index: pkgsrc/sysutils/R-processx/distinfo
diff -u /dev/null pkgsrc/sysutils/R-processx/distinfo:1.1
--- /dev/null   Fri Aug  9 19:03:18 2019
+++ pkgsrc/sysutils/R-processx/distinfo Fri Aug  9 19:03:18 2019
@@ -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