diff --git a/app-vim/nvim-lspconfig/Manifest b/app-vim/nvim-lspconfig/Manifest new file mode 100644 index 0000000..71a8970 --- /dev/null +++ b/app-vim/nvim-lspconfig/Manifest @@ -0,0 +1 @@ +DIST nvim-lspconfig-0.1_p20210704.tar.gz 91591 BLAKE2B 8e6ff2986f15e07f4b0467fa9feb35274ec8fb7f40b83c232722e0f40442eb109ea951e73bd766686b60c73a150f2cd6a5da983ef7ee5cf830ba797a939ac0bd SHA512 c6451344d25d07edab91a37e6abb96f8c7f5a9055bca4fde22a2008ec21fa40a566223c67d02ef0957524190ac3460069237350fe6ab30e72c6c760990046b41 diff --git a/app-vim/nvim-lspconfig/metadata.xml b/app-vim/nvim-lspconfig/metadata.xml new file mode 100644 index 0000000..9b4fc5f --- /dev/null +++ b/app-vim/nvim-lspconfig/metadata.xml @@ -0,0 +1,11 @@ + + + + + holgersson@posteo.de + Nils Freydank + + + neovim/nvim-lspconfig + + diff --git a/app-vim/nvim-lspconfig/nvim-lspconfig-0.1_p20210704.ebuild b/app-vim/nvim-lspconfig/nvim-lspconfig-0.1_p20210704.ebuild new file mode 100644 index 0000000..5f7118d --- /dev/null +++ b/app-vim/nvim-lspconfig/nvim-lspconfig-0.1_p20210704.ebuild @@ -0,0 +1,40 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit vim-plugin +COMMIT_ID="5fe1b132534041e889278f081ff10c02b09c096f" + +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(){ + rm -rf 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 +}