Nils Freydank
f08ba6d4ac
Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Nils Freydank <holgersson@posteo.de>
43 lines
881 B
Bash
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="e2601bb4b8d125e3f96274fe57136004dce4c587"
|
|
|
|
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
|
|
}
|