From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B2A39139694 for ; Fri, 21 Apr 2017 20:45:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07CDDE0C97; Fri, 21 Apr 2017 20:45:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DD158E0C97 for ; Fri, 21 Apr 2017 20:45:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BADF534105A for ; Fri, 21 Apr 2017 20:45:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C61173EF for ; Fri, 21 Apr 2017 20:45:35 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1492807491.22d5270c1d547bf47fcbbdb32725077accfb0896.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/pydiction/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/pydiction/pydiction-1.2.3-r1.ebuild X-VCS-Directories: app-vim/pydiction/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 22d5270c1d547bf47fcbbdb32725077accfb0896 X-VCS-Branch: master Date: Fri, 21 Apr 2017 20:45:35 +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: 8db6e15d-c7a2-45da-8ea5-778d6d4f55c0 X-Archives-Hash: de765d7560e637e70b9f0df505c42b3d commit: 22d5270c1d547bf47fcbbdb32725077accfb0896 Author: Patrice Clement gentoo org> AuthorDate: Thu Apr 20 21:33:08 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Apr 21 20:44:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d5270c app-vim/pydiction: convert to python-r1. Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-vim/pydiction/pydiction-1.2.3-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/app-vim/pydiction/pydiction-1.2.3-r1.ebuild b/app-vim/pydiction/pydiction-1.2.3-r1.ebuild new file mode 100644 index 00000000000..1c606af310f --- /dev/null +++ b/app-vim/pydiction/pydiction-1.2.3-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_4 ) + +inherit vim-plugin python-r1 + +DESCRIPTION="vim plugin: tab-complete your Python code" +HOMEPAGE="https://rkulla.github.io/pydiction/" +SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.zip" +LICENSE="vim" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + +DEPEND="app-arch/unzip" + +S="${WORKDIR}/${PN}-master" + +src_install() { + insinto "/usr/share/${PN}" + local pyfiles=( complete-dict pydiction.py ) + doins "${pyfiles[@]}" + rm -v "${pyfiles[@]}" || die + vim-plugin_src_install +}