From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6EEDE1381F3 for ; Fri, 30 Aug 2013 05:55:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEAF2E0BA4; Fri, 30 Aug 2013 05:55:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65072E0BA4 for ; Fri, 30 Aug 2013 05:55:54 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7C18433EC9A for ; Fri, 30 Aug 2013 05:55:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 03FA7E468F for ; Fri, 30 Aug 2013 05:55:51 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1377842053.e3aca59141a09db2295864fc5ceeb712736aff65.chutzpah@gentoo> Subject: [gentoo-commits] dev/chutzpah:master commit in: app-vim/jedi/ X-VCS-Repository: dev/chutzpah X-VCS-Files: app-vim/jedi/Manifest app-vim/jedi/jedi-9999.ebuild X-VCS-Directories: app-vim/jedi/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: e3aca59141a09db2295864fc5ceeb712736aff65 X-VCS-Branch: master Date: Fri, 30 Aug 2013 05:55:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2afd5442-7b6e-4a36-b16a-c880f55ead59 X-Archives-Hash: be10d79ba82d8a397d44c31dbede9241 commit: e3aca59141a09db2295864fc5ceeb712736aff65 Author: Patrick McLean gentoo org> AuthorDate: Fri Aug 30 05:53:30 2013 +0000 Commit: Patrick McLean gentoo org> CommitDate: Fri Aug 30 05:54:13 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/chutzpah.git;a=commit;h=e3aca591 add jedi vim plugin --- app-vim/jedi/Manifest | 1 + app-vim/jedi/jedi-9999.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/app-vim/jedi/Manifest b/app-vim/jedi/Manifest new file mode 100644 index 0000000..446474b --- /dev/null +++ b/app-vim/jedi/Manifest @@ -0,0 +1 @@ +EBUILD jedi-9999.ebuild 638 SHA256 5328b29bb016666e93e81821e47640a6ef5c0c2cf641bc1aa3d050f33f2fb3ed SHA512 0afcdabc73af86ec9ab4c757cbdde0131e138cd1eb185d162ce1d5759b1d941ac9abbf2c1ff8909040d5b3dabfe00c48b0939826bce37b009990bf3eeb768ff4 WHIRLPOOL 8c429e4765620bf3eda3cd3108af29a4e72286ddccee39110d5d1e94c28b5e0423df0cdecc235a36bd13f7e3b285232eab6d1d9542b2c3b8a3bbf493d2bc5ee4 diff --git a/app-vim/jedi/jedi-9999.ebuild b/app-vim/jedi/jedi-9999.ebuild new file mode 100644 index 0000000..a4c1351 --- /dev/null +++ b/app-vim/jedi/jedi-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=(python{2_7,3_3}) +inherit vim-plugin git-2 python-r1 python-utils-r1 + +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" + +LICENSE="LGPL-3+" +KEYWORDS="" +IUSE="" + +RDEPEND="dev-python/jedi[${PYTHON_USEDEP}]" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +src_prepare() { + python_copy_sources +} + +src_install() { + python_foreach_impl python_domodule jedi_vim.py + vim-plugin_src_install +}