Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/jedi/
Date: Sun, 26 Apr 2020 08:40:26
Message-Id: 1587890391.a0fd7451ba093ea6b39b84052e18149833436ee6.juippis@gentoo
1 commit: a0fd7451ba093ea6b39b84052e18149833436ee6
2 Author: Horea Christian <chr <AT> chymera <DOT> eu>
3 AuthorDate: Mon Apr 20 04:43:10 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 26 08:39:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0fd7451
7
8 app-vim/jedi: version bump 0.10.0, bug #718262
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Horea Christian <chr <AT> chymera.eu>
12 Closes: https://github.com/gentoo/gentoo/pull/15436
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 app-vim/jedi/Manifest | 1 +
16 app-vim/jedi/jedi-0.10.0.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
17 2 files changed, 40 insertions(+)
18
19 diff --git a/app-vim/jedi/Manifest b/app-vim/jedi/Manifest
20 index 40f7e9fe206..ccfc208c404 100644
21 --- a/app-vim/jedi/Manifest
22 +++ b/app-vim/jedi/Manifest
23 @@ -1 +1,2 @@
24 +DIST jedi-0.10.0.tar.gz 36820 BLAKE2B a66f7c58564487d83867d61480d83364af0047cee713c41dbd5c67bff0b2ac33d066c2d0f4367c30059f46fb9f4916fc8d2eb9c64aa6a489e2c16a03f56b0b3c SHA512 65482505446b1001e92870ae64a147b38c0bb4d3151e464d325be741729506a191b284a491f4c3eb77dc46cb9bcd6b8e7bf8689ed95107e89a1f6a05c7fbc9ea
25 DIST jedi-0.8_p20171015.tar.gz 31593 BLAKE2B a34fc7a7d8211cefbaef0012b801bc2dec2b447d34a1d3c338ed37306d36262694f0d8e771042e899959d04bed8925c5beee32803cb7f56add7a83ceb4bf27d9 SHA512 e4238c745d509d9d7e8c0593a46935f1de3c0cdf8e3893deb156110be53e2c9012d98379a6ca747a0bdab77f1def2a88dd46ce5c7d3936f01f0d9ab597f14182
26
27 diff --git a/app-vim/jedi/jedi-0.10.0.ebuild b/app-vim/jedi/jedi-0.10.0.ebuild
28 new file mode 100644
29 index 00000000000..947862ab0a9
30 --- /dev/null
31 +++ b/app-vim/jedi/jedi-0.10.0.ebuild
32 @@ -0,0 +1,39 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python{3_6,3_7,3_8} )
39 +
40 +inherit vim-plugin python-any-r1
41 +
42 +DESCRIPTION="vim plugin: binding to the autocompletion library jedi"
43 +HOMEPAGE="https://github.com/davidhalter/jedi-vim"
44 +SRC_URI="https://github.com/davidhalter/jedi-vim/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="test"
49 +
50 +DEPEND="
51 + ${PYTHON_DEPS}
52 + $(python_gen_any_dep 'dev-python/jedi[${PYTHON_USEDEP}]')
53 + "
54 +RDEPEND="app-editors/vim[python]"
55 +BDEPEND="test? ( dev-python/pytest )"
56 +
57 +S="${WORKDIR}/jedi-vim-${PV}"
58 +
59 +# Tests are broken.
60 +RESTRICT="test"
61 +
62 +# Makefile tries hard to call tests so let's silence this phase.
63 +src_compile() { :; }
64 +
65 +src_install() {
66 + vim-plugin_src_install
67 +}
68 +
69 +src_test() {
70 + pytest -vv || die
71 +}