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/enhancedcommentify/
Date: Thu, 01 Sep 2016 09:40:39
Message-Id: 1472722811.ab54209d80c6d557d4fcb7fd589138d0f3c993cb.monsieurp@gentoo
1 commit: ab54209d80c6d557d4fcb7fd589138d0f3c993cb
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 09:08:40 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 09:40:11 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab54209d
7
8 app-vim/enhancedcommentify: EAPI 6 bump.
9
10 Package-Manager: portage-2.2.28
11
12 .../enhancedcommentify-2.3-r1.ebuild | 32 ++++++++++++++++++++++
13 1 file changed, 32 insertions(+)
14
15 diff --git a/app-vim/enhancedcommentify/enhancedcommentify-2.3-r1.ebuild b/app-vim/enhancedcommentify/enhancedcommentify-2.3-r1.ebuild
16 new file mode 100644
17 index 00000000..2810177
18 --- /dev/null
19 +++ b/app-vim/enhancedcommentify/enhancedcommentify-2.3-r1.ebuild
20 @@ -0,0 +1,32 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit vim-plugin eutils
28 +
29 +DESCRIPTION="vim plugin: enhanced comment creation"
30 +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=23"
31 +
32 +LICENSE="BSD"
33 +KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86"
34 +IUSE=""
35 +
36 +VIM_PLUGIN_HELPFILES="EnhancedCommentify"
37 +
38 +DEPEND="
39 + >=sys-apps/sed-4"
40 +
41 +# See bug #74897.
42 +RDEPEND="
43 + ${DEPEND}
44 + !app-vim/ctx"
45 +
46 +src_prepare() {
47 + default
48 +
49 + # See bug #79185.
50 + epatch "${FILESDIR}"/${PN}-2.1-gentooisms.patch
51 + epatch "${FILESDIR}"/${PN}-2.1-extra-ft-support.patch
52 +}