Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 May 2018 06:38:15 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r470882 - in head/editors: . gomate
Message-ID:  <201805260638.w4Q6cFTS075817@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Sat May 26 06:38:15 2018
New Revision: 470882
URL: https://svnweb.freebsd.org/changeset/ports/470882

Log:
  New port: editors/gomate
  
  Gomate is an implementation of rmate in Go.  It allows editing of
  files via an ssh session in TextMate, VSCode, or any other editor
  that supports rmate.
  
  WWW: https://github.com/mattn/gomate
  
  PR:		228486
  Submitted by:	Fabian Freyer <fabian.freyer@physik.tu-berlin.de>
  Differential Revision:	https://reviews.freebsd.org/D15573

Added:
  head/editors/gomate/
  head/editors/gomate/Makefile   (contents, props changed)
  head/editors/gomate/distinfo   (contents, props changed)
  head/editors/gomate/pkg-descr   (contents, props changed)
  head/editors/gomate/pkg-message   (contents, props changed)
Modified:
  head/editors/Makefile

Modified: head/editors/Makefile
==============================================================================
--- head/editors/Makefile	Sat May 26 06:25:43 2018	(r470881)
+++ head/editors/Makefile	Sat May 26 06:38:15 2018	(r470882)
@@ -51,6 +51,7 @@
     SUBDIR += gmanedit
     SUBDIR += gnotepad+
     SUBDIR += gobby
+    SUBDIR += gomate
     SUBDIR += gwrite
     SUBDIR += heme
     SUBDIR += hexcurse

Added: head/editors/gomate/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/editors/gomate/Makefile	Sat May 26 06:38:15 2018	(r470882)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	gomate
+DISTVERSION=	g20170711
+CATEGORIES=	editors
+
+MAINTAINER=	fabian.freyer@physik.tu-berlin.de
+COMMENT=	Edit files from an ssh session in TextMate/VSCode
+
+LICENSE=	MIT
+
+USES=		go
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	mattn
+GH_TAGNAME=	7008ee3057500672a7b3b28360b10d1b9288f2f7
+
+PLIST_FILES=	bin/gomate
+
+.include <bsd.port.mk>

Added: head/editors/gomate/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/editors/gomate/distinfo	Sat May 26 06:38:15 2018	(r470882)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1527262340
+SHA256 (mattn-gomate-g20170711-7008ee3057500672a7b3b28360b10d1b9288f2f7_GH0.tar.gz) = fba980ee5560edb204178ba6c2f39d0906296f366bd547b4fd3f48c339451f3e
+SIZE (mattn-gomate-g20170711-7008ee3057500672a7b3b28360b10d1b9288f2f7_GH0.tar.gz) = 1464

Added: head/editors/gomate/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/editors/gomate/pkg-descr	Sat May 26 06:38:15 2018	(r470882)
@@ -0,0 +1,5 @@
+Gomate is an implementation of rmate in Go.  It allows editing of
+files via an ssh session in TextMate, VSCode, or any other editor
+that supports rmate.
+
+WWW: https://github.com/mattn/gomate

Added: head/editors/gomate/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/editors/gomate/pkg-message	Sat May 26 06:38:15 2018	(r470882)
@@ -0,0 +1,5 @@
+To remotely edit a file on this host connect via SSH with remote
+port forwarding:
+
+ssh -R 52698:127.0.0.1:52698 user@example.org \
+	gomate /path/to/the/file.txt



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805260638.w4Q6cFTS075817>