svn commit: r367999 - in head/net: . go-cs

Jason E. Hale jhale at FreeBSD.org
Fri Sep 12 01:39:57 UTC 2014


Author: jhale
Date: Fri Sep 12 01:39:55 2014
New Revision: 367999
URL: http://svnweb.freebsd.org/changeset/ports/367999
QAT: https://qat.redports.org/buildarchive/r367999/

Log:
  New port: net/go-cs
  
  go-cs is a program for concurrently executing ssh(1)/scp(1) on a number
  of hosts.  It is intended to automate running remote commands or copying
  files between hosts on a network.
  
  WWW: http://github.com/akosela/go-cs
  
  PR:		193470
  Submitted by:	Andy Kosela <akosela at andykosela.com>

Added:
  head/net/go-cs/
  head/net/go-cs/Makefile   (contents, props changed)
  head/net/go-cs/distinfo   (contents, props changed)
  head/net/go-cs/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Fri Sep 12 01:33:18 2014	(r367998)
+++ head/net/Makefile	Fri Sep 12 01:39:55 2014	(r367999)
@@ -144,6 +144,7 @@
     SUBDIR += gnome-nettool
     SUBDIR += gnu-dico
     SUBDIR += gnu-radius
+    SUBDIR += go-cs
     SUBDIR += go.net
     SUBDIR += gofish
     SUBDIR += gogoc

Added: head/net/go-cs/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/go-cs/Makefile	Fri Sep 12 01:39:55 2014	(r367999)
@@ -0,0 +1,33 @@
+# Created by: Andy Kosela <akosela at andykosela.com>
+# $FreeBSD$
+
+PORTNAME=	go-cs
+PORTVERSION=	0.1
+CATEGORIES=	net
+
+MAINTAINER=	akosela at andykosela.com
+COMMENT=	Concurrent ssh client
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${GO_CMD}:${PORTSDIR}/lang/go
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	akosela
+GH_TAGNAME=	v${PORTVERSION}
+GH_COMMIT=	6ae59df
+
+PLIST_FILES=	bin/cs man/man1/cs.1.gz
+
+GO_CMD=		${LOCALBASE}/bin/go
+GO_ARGS=	build -ldflags "${STRIP}"
+
+do-build:
+	(cd ${WRKSRC} && ${GO_CMD} ${GO_ARGS} cs.go)
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/cs ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/cs.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
+
+.include <bsd.port.mk>

Added: head/net/go-cs/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/go-cs/distinfo	Fri Sep 12 01:39:55 2014	(r367999)
@@ -0,0 +1,2 @@
+SHA256 (go-cs-0.1.tar.gz) = 71b3240810ae7c5ae8fc57a8e9ae3f2cd3ffa2463097344b7b6926bc32c66cfd
+SIZE (go-cs-0.1.tar.gz) = 4484

Added: head/net/go-cs/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/go-cs/pkg-descr	Fri Sep 12 01:39:55 2014	(r367999)
@@ -0,0 +1,5 @@
+go-cs is a program for concurrently executing ssh(1)/scp(1) on a number
+of hosts.  It is intended to automate running remote commands or copying
+files between hosts on a network.
+
+WWW: http://github.com/akosela/go-cs


More information about the svn-ports-head mailing list