diff options
| author | Nils Freydank <holgersson@posteo.de> | 2022-09-01 20:18:35 +0200 |
|---|---|---|
| committer | John Helmert III <ajak@gentoo.org> | 2022-09-01 15:13:26 -0500 |
| commit | 53f6610a7ce6b3add4532cd0ff54b4f345b17da2 (patch) | |
| tree | 0083edbbb1ed3c53d5161f1c7db23bd5e9dd725c /app-vim/vim-go/vim-go-1.26.ebuild | |
| parent | 5cb6512d7f31eda248efcf78408d74a9feee0ee5 (diff) | |
| download | gentoo-53f6610a7ce6b3add4532cd0ff54b4f345b17da2.tar.gz gentoo-53f6610a7ce6b3add4532cd0ff54b4f345b17da2.tar.bz2 gentoo-53f6610a7ce6b3add4532cd0ff54b4f345b17da2.zip | |
app-vim/vim-go: Bump to 1.26
Closes: https://bugs.gentoo.org/548852
Closes: https://bugs.gentoo.org/833016
Signed-off-by: Nils Freydank <holgersson@posteo.de>
Closes: https://github.com/gentoo/gentoo/pull/26730
Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'app-vim/vim-go/vim-go-1.26.ebuild')
| -rw-r--r-- | app-vim/vim-go/vim-go-1.26.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-vim/vim-go/vim-go-1.26.ebuild b/app-vim/vim-go/vim-go-1.26.ebuild new file mode 100644 index 000000000000..6f34df59ddbc --- /dev/null +++ b/app-vim/vim-go/vim-go-1.26.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +KEYWORDS="~amd64" +RESTRICT="test" + +RDEPEND="dev-go/gopls" + +DOCS=( README.md CHANGELOG.md ) + +src_compile() { + # safely skip `make test` triggered by `make` as it runs `go get` commands + # TODO: Is :GoInstallBinaries still necessary? For details see: + # https://github.com/fatih/vim-go/blob/master/doc/vim-go.txt + :; +} + +src_install(){ + insinto /usr/share/vim/vimfiles/ + doins -r templates + + vim-plugin_src_install +} |
