Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-go/
Date: Sun, 29 Oct 2017 06:57:38
Message-Id: 1509260249.8274919bc4e5d0ec66cb662207bd12433cd9a392.monsieurp@gentoo
1 commit: 8274919bc4e5d0ec66cb662207bd12433cd9a392
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 28 22:48:14 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 29 06:57:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8274919b
7
8 app-vim/vim-go: new package.
9
10 vim-go is a Go development plugin for Vim.
11
12 Package-Manager: Portage-2.3.8, Repoman-2.3.3
13 Bug: https://bugs.gentoo.org/635420
14
15 app-vim/vim-go/Manifest | 1 +
16 app-vim/vim-go/metadata.xml | 11 +++++++++++
17 app-vim/vim-go/vim-go-1.13.ebuild | 22 ++++++++++++++++++++++
18 3 files changed, 34 insertions(+)
19
20 diff --git a/app-vim/vim-go/Manifest b/app-vim/vim-go/Manifest
21 new file mode 100644
22 index 00000000000..56207333062
23 --- /dev/null
24 +++ b/app-vim/vim-go/Manifest
25 @@ -0,0 +1 @@
26 +DIST vim-go-1.13.zip 900566 SHA256 b4a6212becad775f90dedcb8045b04bf691f32c258c1fead68d5fbb7b775b463 SHA512 3a1818c126c6ab01cd6993336c9e87f88357375b5252e0aeed434dccd0514cbcb1b7c96dce2aaf8f8c2e21909a17bf4bbb39a386ee1f7049b50a85ed9c635817 WHIRLPOOL 0c92fe8f0f685401a9014124a0fb7341b7891dc5346b5af50124a5d2435614d11ed9d24922e0d5fe4cbfe0045ee0539769b3592ff5a0fdecf0f260a090e7b28d
27
28 diff --git a/app-vim/vim-go/metadata.xml b/app-vim/vim-go/metadata.xml
29 new file mode 100644
30 index 00000000000..a34620b8350
31 --- /dev/null
32 +++ b/app-vim/vim-go/metadata.xml
33 @@ -0,0 +1,11 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="project">
38 + <email>vim@g.o</email>
39 + <name>Gentoo Vim Project</name>
40 + </maintainer>
41 + <upstream>
42 + <remote-id type="github">fatih/vim-go</remote-id>
43 + </upstream>
44 +</pkgmetadata>
45
46 diff --git a/app-vim/vim-go/vim-go-1.13.ebuild b/app-vim/vim-go/vim-go-1.13.ebuild
47 new file mode 100644
48 index 00000000000..2cffe300bf0
49 --- /dev/null
50 +++ b/app-vim/vim-go/vim-go-1.13.ebuild
51 @@ -0,0 +1,22 @@
52 +# Copyright 1999-2017 Gentoo Foundation
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=6
56 +
57 +inherit vim-plugin
58 +
59 +DESCRIPTION="vim plugin: Go development plugin for Vim"
60 +HOMEPAGE="https://github.com/fatih/vim-go"
61 +SRC_URI="https://github.com/fatih/${PN}/archive/v${PV}.zip -> ${P}.zip"
62 +LICENSE="BSD"
63 +KEYWORDS="~amd64 ~x86"
64 +
65 +VIM_PLUGIN_HELPFILES="$PN"
66 +
67 +RESTRICT="test"
68 +
69 +src_compile() {
70 + # safely skip `make test` triggered by `make` as it runs `go get` commands
71 + # TODO: see :GoInstallBinaries (https://github.com/fatih/vim-go/blob/master/doc/vim-go.txt)
72 + :;
73 +}