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 47215139694 for ; Sat, 29 Jul 2017 20:29:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8363E1FC048; Sat, 29 Jul 2017 20:29:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63AFE1FC048 for ; Sat, 29 Jul 2017 20:29:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3E1DB34193A for ; Sat, 29 Jul 2017 20:29:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB8B77491 for ; Sat, 29 Jul 2017 20:29:30 +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: <1501360161.2216890bc84b83e09619ca8086d51a2f36cfab59.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/neocomplcache/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild X-VCS-Directories: app-vim/neocomplcache/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 2216890bc84b83e09619ca8086d51a2f36cfab59 X-VCS-Branch: master Date: Sat, 29 Jul 2017 20:29:30 +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: 1bde5849-de67-4ca3-98ad-27c8281d4d1b X-Archives-Hash: 3e50fd3ef52b9481ea9951e497c44376 commit: 2216890bc84b83e09619ca8086d51a2f36cfab59 Author: Patrice Clement gentoo org> AuthorDate: Sat Jul 29 20:29:21 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Jul 29 20:29:21 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2216890b app-vim/neocomplcache: rename script to avoid file collision. Gentoo-Bug: https://bugs.gentoo.org/426880 Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild b/app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild new file mode 100644 index 00000000000..ae2a54cd75d --- /dev/null +++ b/app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vim-plugin + +DESCRIPTION="vim plugin: ultimate auto completion system" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=2620" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +src_prepare() { + default + + mv autoload/vital.vim "autoload/${PN}vital.vim" || die +}