From owner-svn-ports-all@freebsd.org Sun Jun 18 10:10:04 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B66BDD8DC05; Sun, 18 Jun 2017 10:10:04 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9297F668B6; Sun, 18 Jun 2017 10:10:04 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IAA37L077246; Sun, 18 Jun 2017 10:10:03 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IAA3Aa077241; Sun, 18 Jun 2017 10:10:03 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706181010.v5IAA3Aa077241@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sun, 18 Jun 2017 10:10:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443823 - in head/sysutils: . rex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2017 10:10:04 -0000 Author: danfe Date: Sun Jun 18 10:10:03 2017 New Revision: 443823 URL: https://svnweb.freebsd.org/changeset/ports/443823 Log: REX is a remote execution utility that runs a supplied command or shell script on several hosts in succession; it's written in Tcl and provides extensive scripting facilities. WWW: http://puszcza.gnu.org.ua/projects/rex Submitted by: Zeus Panchenko Added: head/sysutils/rex/ head/sysutils/rex/Makefile (contents, props changed) head/sysutils/rex/distinfo (contents, props changed) head/sysutils/rex/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Jun 18 09:01:27 2017 (r443822) +++ head/sysutils/Makefile Sun Jun 18 10:10:03 2017 (r443823) @@ -663,12 +663,12 @@ SUBDIR += namefix SUBDIR += nbosd SUBDIR += ncdu + SUBDIR += ndmpd SUBDIR += nepomuk-core SUBDIR += nepomuk-widgets SUBDIR += nfcutils SUBDIR += nfsping SUBDIR += nitrogen - SUBDIR += ndmpd SUBDIR += no-login SUBDIR += node_exporter SUBDIR += nomad @@ -942,6 +942,7 @@ SUBDIR += respond SUBDIR += restic SUBDIR += retail + SUBDIR += rex SUBDIR += rfstool SUBDIR += rhc SUBDIR += riak-cs Added: head/sysutils/rex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rex/Makefile Sun Jun 18 10:10:03 2017 (r443823) @@ -0,0 +1,25 @@ +# Created by: Zeus Panchenko +# $FreeBSD$ + +PORTNAME= rex +PORTVERSION= 4.0 +CATEGORIES= sysutils tcl +MASTER_SITES= http://download.gnu.org.ua/pub/release/${PORTNAME}/ + +MAINTAINER= zeus@gnu.org.ua +COMMENT= Remote EXecution utility + +LICENSE= GPLv3+ + +RUN_DEPENDS= expect:lang/expect + +NO_BUILD= yes + +PLIST_FILES= bin/rex man/man8/rex.8.gz + +do-install: + cd ${WRKSRC} && ${WRKSRC}/install --prefix=${STAGEDIR}${PREFIX} \ + --sysconfdir=${PREFIX}/etc \ + --mandir=${STAGEDIR}${MANPREFIX}/man + +.include Added: head/sysutils/rex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rex/distinfo Sun Jun 18 10:10:03 2017 (r443823) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475321371 +SHA256 (rex-4.0.tar.gz) = 52436b38e3f2ea8f780b24d80663ae4730b38da9c9b6bf546cdbc920cc0d05e8 +SIZE (rex-4.0.tar.gz) = 55222 Added: head/sysutils/rex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rex/pkg-descr Sun Jun 18 10:10:03 2017 (r443823) @@ -0,0 +1,8 @@ +REX is a remote execution utility that runs a supplied command or shell +script on several hosts in succession. It is also able to copy a file +(or files) to several hosts. + +Rex is written in Tcl and provides extensive scripting facilities. It +provides a convenient way to administrate multiple servers. + +WWW: http://puszcza.gnu.org.ua/projects/rex