holgersson-overlay/app-vim/nvim-lspconfig/nvim-lspconfig-0.1_p20210824.ebuild
Nils Freydank a563008b54
app-vim/nvim-lspconfig: Bump to 0.1_p20210824
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
2021-08-24 15:58:24 +02:00

43 lines
881 B
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit vim-plugin
COMMIT_ID="b8d1a5a179dc62fe9e14c0919aa1d4023bdb9ae6"
DESCRIPTION="vim plugin: Quickstart configurations for the Nvim LSP client"
HOMEPAGE="https://github.com/neovim/nvim-lspconfig"
LICENSE="Apache-2.0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="test" # need network access
if [[ ${PV} == *9999 ]]
then
inherit git-r3
EGIT_REPO_URI="https://github.com/neovim/${PN}.git"
else
SRC_URI="https://github.com/neovim/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT_ID}"
fi
BDEPEND=">=app-editors/neovim-0.5.0"
DOCS=( README.md )
src_prepare(){
default
rm -r test || die
}
src_compile(){
# Don't do anything. The Makefile just runs some tests that need
# network access.
echo
}
src_install(){
vim-plugin_src_install
}