holgersson-overlay/app-vim/nvim-lspconfig/nvim-lspconfig-0.1_p20210720.ebuild
Nils Freydank 27ab27258b
app-vim/nvim-lspconfig: Bump to 0.1_p20210720
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
2021-07-23 23:22:15 +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="4f72377143fc0961391fb0e42e751b9f677fca4e"
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
}