app-vim/nvim-lspconfig: Bump to 0.1_p20210829

This bump fixes the lua install path.

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
This commit is contained in:
Nils Freydank 2021-08-31 13:42:05 +02:00
parent f03482bc67
commit db32304f6a
Signed by: nfr
GPG Key ID: 0F1DEAB2D36AD112
2 changed files with 14 additions and 5 deletions

View File

@ -1 +1 @@
DIST nvim-lspconfig-0.1_p20210824.tar.gz 94320 BLAKE2B 1afffeeb6bb54318d6422c88d64affcc4c47e5860efca9a759c1f7b5ab28beb1651aceeb3f663d27d90da5e352c9f2b54fca5825fcb8def1b3918dcab32b806e SHA512 d8b403ed0dd127e903c716c9fcf6cad08fb158cb54fa487e574d645bddd158c5d6f40c3f4b40da45f763654094a20bc9b1a28a8d41f4592d34362c0c49e0af14 DIST nvim-lspconfig-0.1_p20210829.tar.gz 96432 BLAKE2B d95fedf1e1e87de19559cee6749c6804b705067d053daf17469baaea9e592763c316ab388c0d0dbfad8c8bb0525474aed1c3c7ef1eb3381ac3f87ce115289442 SHA512 399ba9adc2a5cf459c492961e6e5f8b4f6d6d562ad8ac2ec27573a87bfa49c9fc0f6e5bf181a5051c3c59ddad7336bad693803f835928fb503364b5cb5909acf

View File

@ -3,15 +3,18 @@
EAPI=7 EAPI=7
inherit vim-plugin LUA_COMPAT=( lua5-{1..4} luajit )
COMMIT_ID="b8d1a5a179dc62fe9e14c0919aa1d4023bdb9ae6"
inherit lua-single vim-plugin
COMMIT_ID="0eccc1a0ebf909aecfa1ac238d940061162ae84f"
DESCRIPTION="vim plugin: Quickstart configurations for the Nvim LSP client" DESCRIPTION="vim plugin: Quickstart configurations for the Nvim LSP client"
HOMEPAGE="https://github.com/neovim/nvim-lspconfig" HOMEPAGE="https://github.com/neovim/nvim-lspconfig"
LICENSE="Apache-2.0" LICENSE="Apache-2.0"
KEYWORDS="~amd64" KEYWORDS="~amd64"
IUSE="test" IUSE="test"
RESTRICT="test" # need network access REQUIRED_USE="${LUA_REQUIRED_USE}"
RESTRICT="test" # needs network access
if [[ ${PV} == *9999 ]] if [[ ${PV} == *9999 ]]
then then
@ -22,7 +25,9 @@ else
S="${WORKDIR}/${PN}-${COMMIT_ID}" S="${WORKDIR}/${PN}-${COMMIT_ID}"
fi fi
BDEPEND=">=app-editors/neovim-0.5.0" BDEPEND="virtual/pkgconfig"
RDEPEND=">=app-editors/neovim-0.5.0"
DOCS=( README.md ) DOCS=( README.md )
src_prepare(){ src_prepare(){
@ -38,5 +43,9 @@ src_compile(){
} }
src_install(){ src_install(){
# We need to get the major and minor version only.
insinto /usr/share/lua/$(ver_cut 1-2 $(lua_get_version))
doins -r lua/*
rm -r lua || die
vim-plugin_src_install vim-plugin_src_install
} }