svn commit: r423164 - in head/sysutils: . scct
Joseph Mingrone
jrm at FreeBSD.org
Mon Oct 3 03:52:37 UTC 2016
Author: jrm
Date: Mon Oct 3 03:52:35 2016
New Revision: 423164
URL: https://svnweb.freebsd.org/changeset/ports/423164
Log:
New port sysutils/scct: Simple Cluster_SSH Clone using Tmux
- Quickly create multiple tmux panes, each with an ssh connection to a
specified host and optionally synchronize input
- Written in POSIX sh
- Only depends on tmux
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D8129
Added:
head/sysutils/scct/
head/sysutils/scct/Makefile (contents, props changed)
head/sysutils/scct/distinfo (contents, props changed)
head/sysutils/scct/pkg-descr (contents, props changed)
Modified:
head/sysutils/Makefile
Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile Mon Oct 3 03:22:15 2016 (r423163)
+++ head/sysutils/Makefile Mon Oct 3 03:52:35 2016 (r423164)
@@ -1004,6 +1004,7 @@
SUBDIR += scan_ffs
SUBDIR += scanbuttond
SUBDIR += scanmem
+ SUBDIR += scct
SUBDIR += schedutils
SUBDIR += scprotect
SUBDIR += screen
Added: head/sysutils/scct/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/scct/Makefile Mon Oct 3 03:52:35 2016 (r423164)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME= scct
+PORTVERSION= 0.1
+CATEGORIES= sysutils
+
+MAINTAINER= jrm at FreeBSD.org
+COMMENT= Simple Cluster_SSH Clone using Tmux
+
+LICENSE= BSD2CLAUSE
+
+RUN_DEPENDS= tmux:sysutils/tmux
+
+NO_ARCH= yes
+NO_BUILD= yes
+
+USE_GITHUB= yes
+GH_ACCOUNT= Jehops
+
+PLIST_FILES= bin/scct %%PORTDOCS%%%%DOCSDIR%%/README.org
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/scct ${STAGEDIR}${PREFIX}/bin
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/README.org ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>
Added: head/sysutils/scct/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/scct/distinfo Mon Oct 3 03:52:35 2016 (r423164)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1475465186
+SHA256 (Jehops-scct-0.1_GH0.tar.gz) = 7a3c7cec99290ebba1bcedaf16a96861d110b36968b6e85073f6251cb429dedc
+SIZE (Jehops-scct-0.1_GH0.tar.gz) = 2031
Added: head/sysutils/scct/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/scct/pkg-descr Mon Oct 3 03:52:35 2016 (r423164)
@@ -0,0 +1,8 @@
+scct - Simple Cluster_SSH Clone using Tmux
+
+- Quickly create multiple tmux panes, each with an ssh connection to a specified
+ host and optionally synchronize input
+- Written in POSIX sh
+- Only depends on tmux
+
+WWW: https://github.com/Jehops/scct
More information about the svn-ports-head
mailing list