2017-08-07 00:30:16 +02:00
|
|
|
# Copyright 1999-2017 Gentoo Foundation
|
2017-08-02 18:36:27 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2017-08-07 00:30:16 +02:00
|
|
|
EAPI=6
|
|
|
|
|
2017-08-04 18:23:26 +02:00
|
|
|
PYTHON_COMPAT=( python2_7 python3_4 )
|
2017-08-07 00:30:16 +02:00
|
|
|
|
2017-08-04 18:23:26 +02:00
|
|
|
inherit vim-plugin git-r3 python-r1 python-utils-r1
|
2017-08-02 18:36:27 +02:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
2017-08-07 00:30:16 +02:00
|
|
|
LICENSE="MIT"
|
2017-08-02 18:36:27 +02:00
|
|
|
KEYWORDS=""
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="dev-python/jedi[${PYTHON_USEDEP}]"
|
2017-08-04 18:23:26 +02:00
|
|
|
DEPEND="app-editors/vim[python]"
|
2017-08-02 18:36:27 +02:00
|
|
|
|
2017-08-04 18:23:26 +02:00
|
|
|
#Makeflile calls tests, which are broken.
|
|
|
|
src_compile() { :; }
|
|
|
|
|
2017-08-02 18:36:27 +02:00
|
|
|
src_install() {
|
|
|
|
python_foreach_impl python_domodule jedi_vim.py
|
|
|
|
vim-plugin_src_install
|
|
|
|
}
|