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 86918138253 for ; Thu, 12 May 2016 13:36:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74AC1E07B3; Thu, 12 May 2016 13:36:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E68B6E07AE for ; Thu, 12 May 2016 13:36:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F3D9F3408F0 for ; Thu, 12 May 2016 13:36:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5C0933E for ; Thu, 12 May 2016 13:36:04 +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: <1463059062.f25308cb2ce223a5aa785578ad93cd502651ca67.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/pydiction/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/pydiction/Manifest app-vim/pydiction/metadata.xml app-vim/pydiction/pydiction-1.2.3.ebuild X-VCS-Directories: app-vim/pydiction/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: f25308cb2ce223a5aa785578ad93cd502651ca67 X-VCS-Branch: master Date: Thu, 12 May 2016 13:36:04 +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: 422f21f4-a581-4cfb-920b-f2b2532d6568 X-Archives-Hash: 1d6f5821e10bdcbc1a96fba30a3730a6 commit: f25308cb2ce223a5aa785578ad93cd502651ca67 Author: Patrice Clement gentoo org> AuthorDate: Thu May 12 12:59:51 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu May 12 13:17:42 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f25308cb app-vim/pydiction: Add ebuild to the tree. Package-Manager: portage-2.2.26 app-vim/pydiction/Manifest | 1 + app-vim/pydiction/metadata.xml | 12 ++++++++++++ app-vim/pydiction/pydiction-1.2.3.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/app-vim/pydiction/Manifest b/app-vim/pydiction/Manifest new file mode 100644 index 0000000..6d5a259 --- /dev/null +++ b/app-vim/pydiction/Manifest @@ -0,0 +1 @@ +DIST pydiction-1.2.3.zip 476599 SHA256 0998a06be1741edfb1261944ede6fbad77c3742d8924b57ec3ec80908a22b522 SHA512 20e553cb8fdc541e619936f80d8e808484e265d96d1223a7558770e453ad186d5d0057a8b25cd5707bf80b56e40c885097e4195fd66fea2afd8b6d83f84d9441 WHIRLPOOL b1fab3728637dd2ec780f6174790315b478b37eda8000a22891e75cd8a7e04b8f4255cee8ae9e249c18cf03a7beac7f8e650eed40fe345a68d59e2294435b1e2 diff --git a/app-vim/pydiction/metadata.xml b/app-vim/pydiction/metadata.xml new file mode 100644 index 0000000..8fafbfe --- /dev/null +++ b/app-vim/pydiction/metadata.xml @@ -0,0 +1,12 @@ + + + + + monsieurp@gentoo.org + Patrice Clement + + + vim@gentoo.org + Gentoo Vim Project + + diff --git a/app-vim/pydiction/pydiction-1.2.3.ebuild b/app-vim/pydiction/pydiction-1.2.3.ebuild new file mode 100644 index 0000000..ef3e970 --- /dev/null +++ b/app-vim/pydiction/pydiction-1.2.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit vim-plugin + +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="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" +S="${WORKDIR}/${PN}" + +src_install() { + insinto "/usr/share/${PN}" + local pyfiles=( complete-dict pydiction.py ) + doins "${pyfiles[@]}" + rm -v "${pyfiles[@]}" || die + vim-plugin_src_install +}