Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

3
parallel/paexec/DESCR Normal file
View File

@@ -0,0 +1,3 @@
paexec distributes performing the given tasks across several CPUs or
machines on a network and collects the results from those
CPUs/machines.

37
parallel/paexec/Makefile Normal file
View File

@@ -0,0 +1,37 @@
# $NetBSD: Makefile,v 1.12 2013/03/08 14:06:30 cheusov Exp $
#
DISTNAME= paexec-0.18.0
PKGREVISION= 1
CATEGORIES= parallel sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=paexec/} \
http://mova.org/~cheusov/pub/paexec/
MAINTAINER= cheusov@NetBSD.org
HOMEPAGE= http://sourceforge.net/projects/paexec
COMMENT= Distributes tasks over network or CPUs
LICENSE= mit
BUILD_DEPENDS+= mk-configure>=0.20.0:../../devel/mk-configure
DEPENDS+= runawk>=1.4.3:../../lang/runawk
REPLACE_INTERPRETER+= runawk
REPLACE.runawk.old= /usr/bin/env runawk
REPLACE.runawk.new= ${PREFIX}/bin/runawk
REPLACE_FILES.runawk= paexec/paexec_reorder
TEST_TARGET= test
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
MAKE_ENV+= AWK=${AWK:Q}
MAKE_ENV+= SUBPRJ_DFLT="paexec doc examples"
MAKE_ENV+= EGDIR=${EGDIR}
REPLACE_SH+= examples/cc_wrapper/cc_wrapper_cmd \
tests/broken_echo/transport_broken_echo2
.include "../../devel/mk-configure/mk-c.mk"
.include "../../devel/libmaa/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

35
parallel/paexec/PLIST Normal file
View File

@@ -0,0 +1,35 @@
@comment $NetBSD: PLIST,v 1.2 2012/09/09 23:30:26 cheusov Exp $
bin/paexec
bin/paexec_reorder
man/man1/paexec.1
man/man1/paexec_reorder.1
share/doc/paexec/COPYRIGHT
share/doc/paexec/ChangeLog
share/doc/paexec/NEWS
share/doc/paexec/README
share/doc/paexec/TODO
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/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

6
parallel/paexec/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.5 2013/03/08 14:06:30 cheusov Exp $
SHA1 (paexec-0.18.0.tar.gz) = f67ed51c123db17845eaed4f513b334bbe29b0fa
RMD160 (paexec-0.18.0.tar.gz) = ffd14acfa995bb81e2a4f50b03e6056621a8543e
Size (paexec-0.18.0.tar.gz) = 74183 bytes
SHA1 (patch-paexec_paexec.c) = f44c5365c3f8505d54ca7a6650372e4606378086

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-paexec_paexec.c,v 1.1 2013/03/08 14:06:30 cheusov Exp $
-t '' is equivalent to "no transport"
--- paexec/paexec.c.orig 2013-03-07 12:24:17.000000000 +0000
+++ paexec/paexec.c
@@ -955,7 +955,8 @@ static void process_args (int *argc, cha
arg_cmd = xstrdup (optarg);
break;
case 't':
- arg_transport = xstrdup (optarg);
+ if (optarg [0])
+ arg_transport = xstrdup (optarg);
break;
case 'p':
show_pid = 1;