summaryrefslogtreecommitdiff
path: root/parallel
diff options
context:
space:
mode:
authorcheusov <cheusov@pkgsrc.org>2012-09-09 23:30:26 +0000
committercheusov <cheusov@pkgsrc.org>2012-09-09 23:30:26 +0000
commit48074f5b82a201613f01f972157b173a3557835a (patch)
tree842416b95d21477daf540b97e0917950f333677e /parallel
parent721003b0cffdbc1d354cb6353557634707546602 (diff)
downloadpkgsrc-48074f5b82a201613f01f972157b173a3557835a.tar.gz
Update to 0.17.0
paexec: - Option -x was added. With its help paexec can run one command per task. If -g is also specified, command's exit status is analysed. Appropriate task and dependants are marked as "failed" if it is non-zero. - First character of -n argument must be alphanumeric, `+', `_', `:' or `/'. Other symbols are reserved for future extentions. - With '-n :filename' paexec reads a list of nodes from the specified file. - With a help of new option '-m t=<eot>' end of task string may be specified, which is an empty line by default. - Option -md=<delim> was added that overrides the default delimiter (space character) between tasks in graph mode (-g). - Output line that contains failed dependants no longer ends with unnecessary space. - Long options were completely removed. paexec_reorder: - Fix. "paexec_reorder -g" now handles correctly failed tasks' output. One extra line after "fatal" is expected. - Options -m was added. It does the same things as paexec's -m. More examples of use and regression tests. Documentation update, clean-ups and improvements. Regression tests: - Signals handling was fixed in. - LC_ALL is always set to C in regression tests, this fixes some problems in internationalized environment. mk-configure>=0.23.0 is required at build time
Diffstat (limited to 'parallel')
-rw-r--r--parallel/paexec/Makefile7
-rw-r--r--parallel/paexec/PLIST37
-rw-r--r--parallel/paexec/distinfo8
3 files changed, 30 insertions, 22 deletions
diff --git a/parallel/paexec/Makefile b/parallel/paexec/Makefile
index 3280093388f..bb7e7039580 100644
--- a/parallel/paexec/Makefile
+++ b/parallel/paexec/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.7 2012/03/09 19:00:36 cheusov Exp $
+# $NetBSD: Makefile,v 1.8 2012/09/09 23:30:26 cheusov Exp $
#
-DISTNAME= paexec-0.16.1
-PKGREVISION= 1
+DISTNAME= paexec-0.17.0
CATEGORIES= parallel sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=paexec/} \
http://mova.org/~cheusov/pub/paexec/
@@ -13,7 +12,7 @@ COMMENT= Distributes tasks over network or CPUs
LICENSE= mit
BUILD_DEPENDS+= mk-configure>=0.20.0:../../devel/mk-configure
-DEPENDS+= runawk>=0.20.0:../../lang/runawk
+DEPENDS+= runawk>=1.4.3:../../lang/runawk
PKG_DESTDIR_SUPPORT= user-destdir
diff --git a/parallel/paexec/PLIST b/parallel/paexec/PLIST
index cd79b8f6824..90b0705c871 100644
--- a/parallel/paexec/PLIST
+++ b/parallel/paexec/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2011/03/16 11:04:57 gdt Exp $
+@comment $NetBSD: PLIST,v 1.2 2012/09/09 23:30:26 cheusov Exp $
bin/paexec
bin/paexec_reorder
man/man1/paexec.1
@@ -8,19 +8,28 @@ share/doc/paexec/ChangeLog
share/doc/paexec/NEWS
share/doc/paexec/README
share/doc/paexec/TODO
-share/examples/paexec/1_div_X/1_div_X_cmd
-share/examples/paexec/1_div_X/1_div_X_run
-share/examples/paexec/all_substr/all_substr_cmd
-share/examples/paexec/all_substr/all_substr_run
-share/examples/paexec/cc_wrapper/cc_wrapper_cmd
-share/examples/paexec/cc_wrapper/cc_wrapper_run
+share/examples/paexec/all_substr/cmd
+share/examples/paexec/all_substr/run
+share/examples/paexec/cc_wrapper/cmd
share/examples/paexec/cc_wrapper/func1.c
share/examples/paexec/cc_wrapper/func2.c
share/examples/paexec/cc_wrapper/func3.c
-share/examples/paexec/make_package/make_package_cmd
-share/examples/paexec/make_package/make_package_cmd__xxx_failed
-share/examples/paexec/make_package/make_package_tasks
-share/examples/paexec/make_package/make_package_tasks2
-share/examples/paexec/make_package/make_package_tasks_cycle
-share/examples/paexec/toupper/toupper_cmd
-share/examples/paexec/toupper/toupper_run
+share/examples/paexec/cc_wrapper/run
+share/examples/paexec/cc_wrapper2/func1.c
+share/examples/paexec/cc_wrapper2/func2.c
+share/examples/paexec/cc_wrapper2/func3.c
+share/examples/paexec/cc_wrapper2/run
+share/examples/paexec/dirtest/run
+share/examples/paexec/dirtest/tasks
+share/examples/paexec/divide/cmd
+share/examples/paexec/divide/cmd2
+share/examples/paexec/divide/run
+share/examples/paexec/make_package/cmd
+share/examples/paexec/make_package/cmd__xxx_failed
+share/examples/paexec/make_package/run
+share/examples/paexec/make_package/run_cycle
+share/examples/paexec/make_package/tasks
+share/examples/paexec/make_package/tasks2
+share/examples/paexec/make_package/tasks_cycle
+share/examples/paexec/toupper/cmd
+share/examples/paexec/toupper/run
diff --git a/parallel/paexec/distinfo b/parallel/paexec/distinfo
index aa242b6a09a..a439bae757f 100644
--- a/parallel/paexec/distinfo
+++ b/parallel/paexec/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2011/03/23 14:49:47 gdt Exp $
+$NetBSD: distinfo,v 1.3 2012/09/09 23:30:26 cheusov Exp $
-SHA1 (paexec-0.16.1.tar.gz) = 85c246a8167dba6e19c091f4aa775fe11d9bee85
-RMD160 (paexec-0.16.1.tar.gz) = f96d4b8256dc63a2623bbc3a49e64ed49911ea6f
-Size (paexec-0.16.1.tar.gz) = 49270 bytes
+SHA1 (paexec-0.17.0.tar.gz) = 4a43c4f60f0aad195b12495b89534f65dd739b2b
+RMD160 (paexec-0.17.0.tar.gz) = ce7940bf1bb2fa09a8aabcbe6db3e0a5d0dc6d9d
+Size (paexec-0.17.0.tar.gz) = 72673 bytes