From owner-svn-ports-head@freebsd.org Thu Dec 15 22:01:47 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F565C82614; Thu, 15 Dec 2016 22:01:47 +0000 (UTC) (envelope-from cs@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 mx1.freebsd.org (Postfix) with ESMTPS id 15075A60; Thu, 15 Dec 2016 22:01:47 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBFM1k28025501; Thu, 15 Dec 2016 22:01:46 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBFM1jor025497; Thu, 15 Dec 2016 22:01:45 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201612152201.uBFM1jor025497@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Thu, 15 Dec 2016 22:01:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428636 - in head/devel: . go-gocode X-SVN-Group: ports-head 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.23 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: Thu, 15 Dec 2016 22:01:47 -0000 Author: cs Date: Thu Dec 15 22:01:45 2016 New Revision: 428636 URL: https://svnweb.freebsd.org/changeset/ports/428636 Log: Gocode is a helper tool which is intended to be integrated with your source code editor, like vim, neovim and emacs. WWW: https://github.com/nsf/gocode Added: head/devel/go-gocode/ head/devel/go-gocode/Makefile (contents, props changed) head/devel/go-gocode/distinfo (contents, props changed) head/devel/go-gocode/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Dec 15 21:45:07 2016 (r428635) +++ head/devel/Makefile Thu Dec 15 22:01:45 2016 (r428636) @@ -751,6 +751,7 @@ SUBDIR += go-form SUBDIR += go-glide SUBDIR += go-go.uuid + SUBDIR += go-gocode SUBDIR += go-goregen SUBDIR += go-hashicorp-logutils SUBDIR += go-json-rest Added: head/devel/go-gocode/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-gocode/Makefile Thu Dec 15 22:01:45 2016 (r428636) @@ -0,0 +1,21 @@ +# Created by: Carlo Strub +# $FreeBSD$ + +PORTNAME= gocode +PORTVERSION= 20161122 +CATEGORIES= devel +PKGNAMEPREFIX= go- + +MAINTAINER= cs@FreeBSD.org +COMMENT= Autocompletion daemon for golang + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= nsf +GH_TAGNAME= 5070dacabf2a80deeaf4ddb0be3761d06fce7be5 +USES= go +GO_PKGNAME= github.com/nsf/gocode +PLIST_FILES= bin/gocode + +.include Added: head/devel/go-gocode/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-gocode/distinfo Thu Dec 15 22:01:45 2016 (r428636) @@ -0,0 +1,3 @@ +TIMESTAMP = 1481838919 +SHA256 (nsf-gocode-20161122-5070dacabf2a80deeaf4ddb0be3761d06fce7be5_GH0.tar.gz) = d2009f26d4bfb82bbd7bc36c0e2b86d2339e9a6c348a764b16c01ef5a4c40f3c +SIZE (nsf-gocode-20161122-5070dacabf2a80deeaf4ddb0be3761d06fce7be5_GH0.tar.gz) = 87145 Added: head/devel/go-gocode/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-gocode/pkg-descr Thu Dec 15 22:01:45 2016 (r428636) @@ -0,0 +1,4 @@ +Gocode is a helper tool which is intended to be integrated with your source +code editor, like vim, neovim and emacs. + +WWW: https://github.com/nsf/gocode