From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D039C1396D9 for ; Sun, 29 Oct 2017 06:57:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 318672BC047; Sun, 29 Oct 2017 06:57:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C1A72BC047 for ; Sun, 29 Oct 2017 06:57:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A7E8341669 for ; Sun, 29 Oct 2017 06:57:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDBFA41F for ; Sun, 29 Oct 2017 06:57:35 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1509260249.8274919bc4e5d0ec66cb662207bd12433cd9a392.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-go/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/vim-go/Manifest app-vim/vim-go/metadata.xml app-vim/vim-go/vim-go-1.13.ebuild X-VCS-Directories: app-vim/vim-go/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 8274919bc4e5d0ec66cb662207bd12433cd9a392 X-VCS-Branch: master Date: Sun, 29 Oct 2017 06:57:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a305cf79-bead-4a6c-8d83-13c9e4ad6e12 X-Archives-Hash: bd81a9ccca1b09aacaaf761c1fca0bf9 commit: 8274919bc4e5d0ec66cb662207bd12433cd9a392 Author: Patrice Clement gentoo org> AuthorDate: Sat Oct 28 22:48:14 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Oct 29 06:57:29 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8274919b app-vim/vim-go: new package. vim-go is a Go development plugin for Vim. Package-Manager: Portage-2.3.8, Repoman-2.3.3 Bug: https://bugs.gentoo.org/635420 app-vim/vim-go/Manifest | 1 + app-vim/vim-go/metadata.xml | 11 +++++++++++ app-vim/vim-go/vim-go-1.13.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/app-vim/vim-go/Manifest b/app-vim/vim-go/Manifest new file mode 100644 index 00000000000..56207333062 --- /dev/null +++ b/app-vim/vim-go/Manifest @@ -0,0 +1 @@ +DIST vim-go-1.13.zip 900566 SHA256 b4a6212becad775f90dedcb8045b04bf691f32c258c1fead68d5fbb7b775b463 SHA512 3a1818c126c6ab01cd6993336c9e87f88357375b5252e0aeed434dccd0514cbcb1b7c96dce2aaf8f8c2e21909a17bf4bbb39a386ee1f7049b50a85ed9c635817 WHIRLPOOL 0c92fe8f0f685401a9014124a0fb7341b7891dc5346b5af50124a5d2435614d11ed9d24922e0d5fe4cbfe0045ee0539769b3592ff5a0fdecf0f260a090e7b28d diff --git a/app-vim/vim-go/metadata.xml b/app-vim/vim-go/metadata.xml new file mode 100644 index 00000000000..a34620b8350 --- /dev/null +++ b/app-vim/vim-go/metadata.xml @@ -0,0 +1,11 @@ + + + + + vim@gentoo.org + Gentoo Vim Project + + + fatih/vim-go + + diff --git a/app-vim/vim-go/vim-go-1.13.ebuild b/app-vim/vim-go/vim-go-1.13.ebuild new file mode 100644 index 00000000000..2cffe300bf0 --- /dev/null +++ b/app-vim/vim-go/vim-go-1.13.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vim-plugin + +DESCRIPTION="vim plugin: Go development plugin for Vim" +HOMEPAGE="https://github.com/fatih/vim-go" +SRC_URI="https://github.com/fatih/${PN}/archive/v${PV}.zip -> ${P}.zip" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" + +VIM_PLUGIN_HELPFILES="$PN" + +RESTRICT="test" + +src_compile() { + # safely skip `make test` triggered by `make` as it runs `go get` commands + # TODO: see :GoInstallBinaries (https://github.com/fatih/vim-go/blob/master/doc/vim-go.txt) + :; +}