app-vim/perlomni: add perlomni to the tree.
authorPatrice Clement <monsieurp@gentoo.org>
Fri, 23 Sep 2016 22:25:39 +0000 (00:25 +0200)
committerPatrice Clement <monsieurp@gentoo.org>
Fri, 23 Sep 2016 22:25:57 +0000 (00:25 +0200)
perl-completion is a plugin which supports basic Perl completion for vim.

Package-Manager: portage-2.2.28

app-vim/perlomni/Manifest [new file with mode: 0644]
app-vim/perlomni/metadata.xml [new file with mode: 0644]
app-vim/perlomni/perlomni-2.5.ebuild [new file with mode: 0644]

diff --git a/app-vim/perlomni/Manifest b/app-vim/perlomni/Manifest
new file mode 100644 (file)
index 0000000..fdd2bcd
--- /dev/null
@@ -0,0 +1 @@
+DIST perlomni-2.5.zip 26871 SHA256 b13f8ed41ecdfa779875c48ac2df1241272ac03cef53271054dc6e9c0b011288 SHA512 aeb4bb6efef859145a942271ac4e08c99af3aed45024ca2d5affe2e72c356fa4e8f9cef78ff8a1796426ec9d2339ea2b83f07b224a1b4b98598aec5f6f45b0d7 WHIRLPOOL a8f62ff6c7a0535d0177bea205206505ad3d578c50a2ce8880fa2cfb32ba3e8fa6f750908ec846ac0a7b2af546c34043676c8747b11504487e178f93ecbc4089
diff --git a/app-vim/perlomni/metadata.xml b/app-vim/perlomni/metadata.xml
new file mode 100644 (file)
index 0000000..6c8987e
--- /dev/null
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="project">
+    <email>vim@gentoo.org</email>
+    <name>Gentoo Vim Project</name>
+  </maintainer>
+  <maintainer type="person">
+    <email>monsieurp@gentoo.org</email>
+  </maintainer>
+</pkgmetadata>
diff --git a/app-vim/perlomni/perlomni-2.5.ebuild b/app-vim/perlomni/perlomni-2.5.ebuild
new file mode 100644 (file)
index 0000000..28b0746
--- /dev/null
@@ -0,0 +1,28 @@
+# 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: Perl omni completion"
+HOMEPAGE="https://github.com/c9s/perlomni.vim"
+SRC_URI="https://github.com/c9s/${PN}.vim/archive/v${PV}.zip -> ${P}.zip"
+LICENSE="vim.org"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+DEPEND="
+       app-arch/unzip
+       dev-lang/perl"
+
+S="${WORKDIR}/${PN}.vim-${PV}"
+
+src_prepare() {
+       default
+       rm -v Makefile config.mk README.mkd README.mkd.old win32-install.bat TODO || die
+}
+
+src_compile() {
+       :;
+}