mirror of
https://github.com/TrentSPalmer/gentoo-overlay-trent.git
synced 2024-11-16 08:21:30 -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="715acf2847b8fa8d436a10a4c3dfd7187d53b72f"
|
|
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
|
|
}
|