Import of pkgsrc-2015Q2

This commit is contained in:
2015-08-30 02:56:09 -07:00
committed by Lionel Sambuc
parent 4af1cdf7a9
commit f641581404
15409 changed files with 267784 additions and 121624 deletions

View File

@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.69 2014/11/24 01:08:02 asau Exp $
# $NetBSD: Makefile,v 1.70 2015/06/07 22:49:04 joerg Exp $
PKGNAME= pbulk-0.53
PKGNAME= pbulk-0.54
COMMENT= Modular bulk build framework
.include "../../pkgtools/pbulk/Makefile.common"

View File

@@ -1,5 +1,5 @@
#!@SH@
# $NetBSD: build-client-start,v 1.2 2008/09/16 18:21:30 joerg Exp $
# $NetBSD: build-client-start,v 1.3 2015/06/07 22:49:04 joerg Exp $
. @PBULK_CONFIG@
@@ -12,5 +12,13 @@ if [ "${config_version}" != "@PBULK_CONFIG_VERSION@" ]; then
fi
for client in ${build_clients}; do
ssh $client "${pbuild} -c ${master_port_build} -b ${pbuild_script}" &
case ${client} in
*:*)
port="-p ${client##*:}"
client=${client%%:*}
;;
*)
;;
esac
ssh $port $client "${pbuild} -c ${master_port_build} -b ${pbuild_script}" &
done

View File

@@ -1,5 +1,5 @@
#!@SH@
# $NetBSD: scan-client-start,v 1.3 2012/11/23 12:13:35 joerg Exp $
# $NetBSD: scan-client-start,v 1.4 2015/06/07 22:49:04 joerg Exp $
. @PBULK_CONFIG@
@@ -18,5 +18,13 @@ else
fi
for client in ${scan_clients}; do
ssh $client "${pscan_prepare} && ${pscan} -c ${master_port_scan} -M ${make} ${extra_pscan_args} ${pkgsrc}" &
case ${client} in
*:*)
port="-p ${client##*:}"
client=${client%%:*}
;;
*)
;;
esac
ssh $port $client "${pscan_prepare} && ${pscan} -c ${master_port_scan} -M ${make} ${extra_pscan_args} ${pkgsrc}" &
done