Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/perlomni/
Date: Sat, 15 Oct 2016 12:32:05
Message-Id: 1476534713.233380e49f71c727d8878d6fb8215797b81ca905.monsieurp@gentoo
1 commit: 233380e49f71c727d8878d6fb8215797b81ca905
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 15 10:17:17 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 15 12:31:53 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233380e4
7
8 app-vim/perlomni: Stable for amd64. Mark stable for the remaining arches using the ALLARCHES policy.
9
10 Package-Manager: portage-2.3.0
11
12 app-vim/perlomni/perlomni-2.5.ebuild | 20 ++++++++++++++------
13 1 file changed, 14 insertions(+), 6 deletions(-)
14
15 diff --git a/app-vim/perlomni/perlomni-2.5.ebuild b/app-vim/perlomni/perlomni-2.5.ebuild
16 index 28b0746..c576dc3 100644
17 --- a/app-vim/perlomni/perlomni-2.5.ebuild
18 +++ b/app-vim/perlomni/perlomni-2.5.ebuild
19 @@ -6,23 +6,31 @@ EAPI=6
20
21 inherit vim-plugin
22
23 -DESCRIPTION="vim plugin: Perl omni completion"
24 +DESCRIPTION="vim plugin: a vim plugin with Perl omni completion functions"
25 HOMEPAGE="https://github.com/c9s/perlomni.vim"
26 SRC_URI="https://github.com/c9s/${PN}.vim/archive/v${PV}.zip -> ${P}.zip"
27 LICENSE="vim.org"
28 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
29 +KEYWORDS="amd64 ppc ppc64 x86"
30
31 DEPEND="
32 app-arch/unzip
33 dev-lang/perl"
34
35 +RDEPEND="${DEPEND}"
36 +
37 S="${WORKDIR}/${PN}.vim-${PV}"
38
39 src_prepare() {
40 default
41 - rm -v Makefile config.mk README.mkd README.mkd.old win32-install.bat TODO || die
42 + local CLEANUP=(
43 + Makefile
44 + config.mk
45 + README.mkd
46 + README.mkd.old
47 + win32-install.bat
48 + TODO
49 + )
50 + rm -v "${CLEANUP[@]}" || die
51 }
52
53 -src_compile() {
54 - :;
55 -}
56 +src_compile() { :; }