blob: da57a94f10e631581dc2cdade2c31d30467f59c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{2_7,3_4,3_5} )
inherit vim-plugin python-r1 python-utils-r1
# Commit Date: Sun Oct 15 20:51:54 2017 +0200
COMMIT="77924398bd594e238766153cec97ace62650f082"
DESCRIPTION="vim plugin: binding to the autocompletion library jedi"
HOMEPAGE="https://github.com/davidhalter/jedi-vim"
SRC_URI="https://github.com/davidhalter/jedi-vim/archive/${COMMIT}.zip -> ${P}.zip"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-python/jedi[${PYTHON_USEDEP}]"
DEPEND="app-editors/vim[python]"
S="${WORKDIR}/jedi-vim-${COMMIT}"
# Tests are broken.
RESTRICT="test"
# Makefile tries hard to call tests so let's silence this phase.
src_compile() { :; }
src_install() {
vim-plugin_src_install
}
|