holgersson-overlay/app-vim/deoplete/deoplete-6.1.ebuild
Nils Freydank 5d25b92230
app-vim/deoplete: Add new package in version 6.1
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
2021-12-02 21:27:15 +01:00

33 lines
599 B
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit vim-plugin
DESCRIPTION="vim plugin: Asynchronous completion framework for neovim/vim8 "
HOMEPAGE="https://github.com/Shougo/deoplete.nvim"
SRC_URI="https://github.com/Shougo/deoplete.nvim/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/deoplete.nvim-${PV}"
LICENSE="MIT"
KEYWORDS="~amd64"
RDEPEND="dev-python/pynvim"
IUSE="test"
restrict="!test? (test)"
src_prepare(){
if ! use test; then
rm -r test || die
fi
default
}
src_compile(){
# ...just WTF...
:
}