Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/chutzpah:master commit in: app-vim/jedi/
Date: Fri, 30 Aug 2013 05:55:56
Message-Id: 1377842053.e3aca59141a09db2295864fc5ceeb712736aff65.chutzpah@gentoo
1 commit: e3aca59141a09db2295864fc5ceeb712736aff65
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 30 05:53:30 2013 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 30 05:54:13 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/chutzpah.git;a=commit;h=e3aca591
7
8 add jedi vim plugin
9
10 ---
11 app-vim/jedi/Manifest | 1 +
12 app-vim/jedi/jedi-9999.ebuild | 29 +++++++++++++++++++++++++++++
13 2 files changed, 30 insertions(+)
14
15 diff --git a/app-vim/jedi/Manifest b/app-vim/jedi/Manifest
16 new file mode 100644
17 index 0000000..446474b
18 --- /dev/null
19 +++ b/app-vim/jedi/Manifest
20 @@ -0,0 +1 @@
21 +EBUILD jedi-9999.ebuild 638 SHA256 5328b29bb016666e93e81821e47640a6ef5c0c2cf641bc1aa3d050f33f2fb3ed SHA512 0afcdabc73af86ec9ab4c757cbdde0131e138cd1eb185d162ce1d5759b1d941ac9abbf2c1ff8909040d5b3dabfe00c48b0939826bce37b009990bf3eeb768ff4 WHIRLPOOL 8c429e4765620bf3eda3cd3108af29a4e72286ddccee39110d5d1e94c28b5e0423df0cdecc235a36bd13f7e3b285232eab6d1d9542b2c3b8a3bbf493d2bc5ee4
22
23 diff --git a/app-vim/jedi/jedi-9999.ebuild b/app-vim/jedi/jedi-9999.ebuild
24 new file mode 100644
25 index 0000000..a4c1351
26 --- /dev/null
27 +++ b/app-vim/jedi/jedi-9999.ebuild
28 @@ -0,0 +1,29 @@
29 +# Copyright 1999-2012 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +# $Header: $
32 +
33 +EAPI=5
34 +PYTHON_COMPAT=(python{2_7,3_3})
35 +inherit vim-plugin git-2 python-r1 python-utils-r1
36 +
37 +DESCRIPTION="Jedi Python autocompletion with VIM"
38 +HOMEPAGE="https://github.com/davidhalter/jedi-vim"
39 +SRC_URI=""
40 +EGIT_REPO_URI="git://github.com/davidhalter/${PN}-vim.git"
41 +
42 +LICENSE="LGPL-3+"
43 +KEYWORDS=""
44 +IUSE=""
45 +
46 +RDEPEND="dev-python/jedi[${PYTHON_USEDEP}]"
47 +
48 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 +
50 +src_prepare() {
51 + python_copy_sources
52 +}
53 +
54 +src_install() {
55 + python_foreach_impl python_domodule jedi_vim.py
56 + vim-plugin_src_install
57 +}