freebsd-ports/net/p5-Net-OpenSSH-Parallel/Makefile
Sunpoet Po-Chuan Hsieh 439d830a59 - Add p5-Net-OpenSSH-Parallel 0.12
Net::OpenSSH::Parallel is an scheduler that can run commands in parallel in a
set of hosts through SSH. It tries to find a compromise between being simple to
use, efficient and covering a good part of the problem space of parallel process
execution via SSH.

Obviously, it is build on top of Net::OpenSSH!

Common usage of the module is as follows:
- Create a Net::OpenSSH::Parallel object.
- Register the hosts where you want to run commands with the "add_host" method.
- Queue the actions you want to run (commands, file copy operations, etc.) using
  the "push" method.
- Call the "run" method and let the parallel scheduler take care of everything!

WWW: http://search.cpan.org/dist/Net-OpenSSH-Parallel/
2012-05-05 06:10:54 +00:00

28 lines
638 B
Makefile

# New ports collection makefile for: p5-Net-OpenSSH-Parallel
# Date created: 2012-05-05
# Whom: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= Net-OpenSSH-Parallel
PORTVERSION= 0.12
CATEGORIES= net security perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Run SSH jobs in parallel
LICENSE= ART10 GPLv1
LICENSE_COMB= dual
BUILD_DEPENDS= p5-Net-OpenSSH>=0.39:${PORTSDIR}/net/p5-Net-OpenSSH
RUN_DEPENDS= p5-Net-OpenSSH>=0.39:${PORTSDIR}/net/p5-Net-OpenSSH
PERL_CONFIGURE= yes
MAN3= Net::OpenSSH::Parallel.3 \
Net::OpenSSH::Parallel::Constants.3
.include <bsd.port.mk>