mirror of
https://github.com/TrentSPalmer/gentoo-overlay-trent.git
synced 2024-11-17 00:31:31 -08:00
32 lines
568 B
Bash
32 lines
568 B
Bash
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
inherit git-r3
|
||
|
|
||
|
DESCRIPTION="deoplete-jedi"
|
||
|
HOMEPAGE="https://github.com/zchee/deoplete-jedi"
|
||
|
EGIT_REPO_URI="https://github.com/zchee/deoplete-jedi.git"
|
||
|
EGIT_COMMIT="f7a0c4ffc53c16a931f761819240f60eafec9604"
|
||
|
SRC_URI=""
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
|
||
|
LICENSE="MIT"
|
||
|
SLOT="0"
|
||
|
IUSE=""
|
||
|
|
||
|
DEPEND=""
|
||
|
RDEPEND="app-nvim/deoplete
|
||
|
dev-python/jedi"
|
||
|
|
||
|
src_compile() {
|
||
|
true
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
insinto /usr/share/nvim/runtime
|
||
|
doins -r rplugin
|
||
|
dodoc README.md LICENSE
|
||
|
}
|