1
0
Fork 0

avoiding broken test suite

This commit is contained in:
Horea Christian 2017-08-04 18:23:26 +02:00
parent 41165d0ed2
commit 9cbd9de9ab
1 changed files with 8 additions and 4 deletions

View File

@ -3,8 +3,8 @@
# $Header: $
EAPI=5
PYTHON_COMPAT=(python{2_7,3_4})
inherit vim-plugin git-2 python-r1 python-utils-r1
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"
@ -16,15 +16,19 @@ KEYWORDS=""
IUSE=""
RDEPEND="dev-python/jedi[${PYTHON_USEDEP}]"
DEPEND="app-editors/vim[${PYTHON_USEDEP},python]"
DEPEND="app-editors/vim[python]"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
#REQUIRED_USE="${PYTHON_REQUIRED_USE}"
src_prepare() {
python_copy_sources
}
#Makeflile calls tests, which are broken.
src_compile() { :; }
src_install() {
python_foreach_impl python_domodule jedi_vim.py
vim-plugin_src_install
}