From owner-svn-ports-all@FreeBSD.ORG Tue May 19 03:33:08 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8131313; Tue, 19 May 2015 03:33:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 AA91C1F99; Tue, 19 May 2015 03:33:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4J3X8FN037924; Tue, 19 May 2015 03:33:08 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4J3X7BS037914; Tue, 19 May 2015 03:33:07 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201505190333.t4J3X7BS037914@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Tue, 19 May 2015 03:33:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386737 - in head/security: . tmux-cssh 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.20 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: Tue, 19 May 2015 03:33:09 -0000 Author: vanilla Date: Tue May 19 03:33:06 2015 New Revision: 386737 URL: https://svnweb.freebsd.org/changeset/ports/386737 Log: Add tmux-cssh 20150518, clusterSSH features using tmux, but not X11. PR: 200313 Submitted by: jrm@ftfl.ca Added: head/security/tmux-cssh/ head/security/tmux-cssh/Makefile (contents, props changed) head/security/tmux-cssh/distinfo (contents, props changed) head/security/tmux-cssh/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue May 19 02:50:54 2015 (r386736) +++ head/security/Makefile Tue May 19 03:33:06 2015 (r386737) @@ -1024,6 +1024,7 @@ SUBDIR += tinc SUBDIR += tinyca SUBDIR += tlswrap + SUBDIR += tmux-cssh SUBDIR += tor SUBDIR += tor-devel SUBDIR += tpm-tools Added: head/security/tmux-cssh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/tmux-cssh/Makefile Tue May 19 03:33:06 2015 (r386737) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= tmux-cssh +PORTVERSION= 20150518 +CATEGORIES= security + +MAINTAINER= jrm@ftfl.ca +COMMENT= ClusterSSH features using tmux, but not X11 + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${LOCALBASE}/bin/tmux:${PORTSDIR}/sysutils/tmux + +NO_BUILD= YES + +USE_GITHUB= yes +GH_ACCOUNT= dennishafemann +GH_TAGNAME= 94ecc012c8 + +PLIST_FILES= bin/tmux-cssh %%PORTDOCS%%%%DOCSDIR%%/README.md + +do-install: + @cd ${WRKSRC} && \ + ${INSTALL_SCRIPT} ${WRKSRC}/tmux-cssh ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include Added: head/security/tmux-cssh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/tmux-cssh/distinfo Tue May 19 03:33:06 2015 (r386737) @@ -0,0 +1,2 @@ +SHA256 (dennishafemann-tmux-cssh-20150518-94ecc012c8_GH0.tar.gz) = aad41d549b4b7a90c958f5ffc9211eb94eeaaadb55769a313165408140b2e2d7 +SIZE (dennishafemann-tmux-cssh-20150518-94ecc012c8_GH0.tar.gz) = 4830 Added: head/security/tmux-cssh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/tmux-cssh/pkg-descr Tue May 19 03:33:06 2015 (r386737) @@ -0,0 +1,3 @@ +tmux-cssh is simple POSIX shell script, which synchronizes interactive shell +commands over tmux sessions, making it useful for working on cluster nodes. It +offers similar functionality to ClusterSSH, but without depending on X11.