From owner-svn-ports-head@freebsd.org Sat May 26 06:38:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A6DAEFF6FD; Sat, 26 May 2018 06:38:17 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EED3984A6B; Sat, 26 May 2018 06:38:16 +0000 (UTC) (envelope-from tobik@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CAA96453C; Sat, 26 May 2018 06:38:16 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4Q6cGwN075821; Sat, 26 May 2018 06:38:16 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4Q6cFTS075817; Sat, 26 May 2018 06:38:15 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201805260638.w4Q6cFTS075817@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sat, 26 May 2018 06:38:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470882 - in head/editors: . gomate X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/editors: . gomate X-SVN-Commit-Revision: 470882 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2018 06:38:17 -0000 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 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 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