commit: 79f467450adbe10133eb2706cf7ba27f4057a236 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org> AuthorDate: Fri Sep 23 22:25:39 2016 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Fri Sep 23 22:25:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79f46745
app-vim/perlomni: add perlomni to the tree. perl-completion is a plugin which supports basic Perl completion for vim. Package-Manager: portage-2.2.28 app-vim/perlomni/Manifest | 1 + app-vim/perlomni/metadata.xml | 11 +++++++++++ app-vim/perlomni/perlomni-2.5.ebuild | 28 ++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/app-vim/perlomni/Manifest b/app-vim/perlomni/Manifest new file mode 100644 index 00000000..fdd2bcd --- /dev/null +++ b/app-vim/perlomni/Manifest @@ -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 index 00000000..6c8987e --- /dev/null +++ b/app-vim/perlomni/metadata.xml @@ -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>[email protected]</email> + <name>Gentoo Vim Project</name> + </maintainer> + <maintainer type="person"> + <email>[email protected]</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 index 00000000..28b0746 --- /dev/null +++ b/app-vim/perlomni/perlomni-2.5.ebuild @@ -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() { + :; +}
