Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.12 2013/03/08 14:06:30 cheusov Exp $
# $NetBSD: Makefile,v 1.14 2013/08/26 16:20:03 cheusov Exp $
#
DISTNAME= paexec-0.18.0
PKGREVISION= 1
DISTNAME= paexec-0.19.1
CATEGORIES= parallel sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=paexec/} \
http://mova.org/~cheusov/pub/paexec/
@@ -31,7 +30,9 @@ 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"
post-install:
set -e; cd ${WRKSRC}; \
${INSTALL_DATA} presentation/paexec.pdf ${DESTDIR}${PREFIX}/share/doc/paexec/
.include "../../devel/libmaa/buildlink3.mk"
.include "../../devel/mk-configure/mk-c.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -1,35 +1,36 @@
@comment $NetBSD: PLIST,v 1.2 2012/09/09 23:30:26 cheusov Exp $
@comment $NetBSD: PLIST,v 1.3 2013/08/25 14:59:17 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/doc/paexec/paexec.pdf
share/examples/paexec/all_substr/cmd_all_substr
share/examples/paexec/all_substr/run_all_substr
share/examples/paexec/cc_wrapper/cmd_cc_wrapper
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_wrapper/run_cc_wrapper
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/cc_wrapper2/run_cc_wrapper2
share/examples/paexec/dirtest/run_dirtest
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/divide/cmd_divide
share/examples/paexec/divide/cmd_divide2
share/examples/paexec/divide/run_divide
share/examples/paexec/divide/run_divide2
share/examples/paexec/make_package/cmd_make_package
share/examples/paexec/make_package/cmd_xxx_failed_make_package
share/examples/paexec/make_package/run_cycle_make_package
share/examples/paexec/make_package/run_make_package
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
share/examples/paexec/toupper/cmd_toupper
share/examples/paexec/toupper/run_toupper

View File

@@ -1,6 +1,5 @@
$NetBSD: distinfo,v 1.5 2013/03/08 14:06:30 cheusov Exp $
$NetBSD: distinfo,v 1.7 2013/08/26 16:20:03 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
SHA1 (paexec-0.19.1.tar.gz) = af903d2be89a2f564d96830ec9c9d0895b59a562
RMD160 (paexec-0.19.1.tar.gz) = 0cba593838a66d77622be422677dacfd0a646dd1
Size (paexec-0.19.1.tar.gz) = 147668 bytes

View File

@@ -1,15 +0,0 @@
$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;