1
0
mirror of synced 2024-06-26 14:22:53 +02:00
TheChymera-overlay/app-vim/jedi/jedi-9999.ebuild
Horea Christian 2d8e3d38e6
app-vim/jedi: new ebuild
Package-Manager: Portage-2.3.6, Repoman-2.3.3
2017-08-07 00:30:16 +02:00

29 lines
648 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_4 )
inherit vim-plugin git-r3 python-r1 python-utils-r1
DESCRIPTION="Jedi Python autocompletion with VIM"
HOMEPAGE="https://github.com/davidhalter/jedi-vim"
SRC_URI=""
EGIT_REPO_URI="git://github.com/davidhalter/${PN}-vim.git"
LICENSE="MIT"
KEYWORDS=""
IUSE=""
RDEPEND="dev-python/jedi[${PYTHON_USEDEP}]"
DEPEND="app-editors/vim[python]"
#Makeflile calls tests, which are broken.
src_compile() { :; }
src_install() {
python_foreach_impl python_domodule jedi_vim.py
vim-plugin_src_install
}