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/lustyexplorer/
Date: Tue, 12 Mar 2019 23:25:06
Message-Id: 1552429745.2cf42072fd6fc4b46bdcac05ffa0e49dd71408d1.monsieurp@gentoo
1 commit: 2cf42072fd6fc4b46bdcac05ffa0e49dd71408d1
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 12 22:27:49 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 12 22:29:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cf42072
7
8 app-vim/lustyexplorer: EAPI 6 bump.
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-vim/lustyexplorer/lustyexplorer-4.3-r1.ebuild | 30 +++++++++++++++++++++++
14 1 file changed, 30 insertions(+)
15
16 diff --git a/app-vim/lustyexplorer/lustyexplorer-4.3-r1.ebuild b/app-vim/lustyexplorer/lustyexplorer-4.3-r1.ebuild
17 new file mode 100644
18 index 00000000000..18e37c2dd2f
19 --- /dev/null
20 +++ b/app-vim/lustyexplorer/lustyexplorer-4.3-r1.ebuild
21 @@ -0,0 +1,30 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +inherit vim-plugin
28 +
29 +DESCRIPTION="vim plugin: dynamic filesystem and buffer explorer"
30 +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1890"
31 +LICENSE="bufexplorer.vim"
32 +KEYWORDS="~amd64 ~x86"
33 +
34 +VIM_PLUGIN_HELPFILES="lusty-explorer.txt"
35 +
36 +RDEPEND="|| (
37 + app-editors/vim[ruby]
38 + app-editors/gvim[ruby]
39 +)"
40 +
41 +src_prepare() {
42 + default
43 +
44 + # There's good documentation included with the script, but it's not
45 + # in a helpfile. Since there's rather too much information to include
46 + # in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc.
47 + mkdir "${S}"/doc || die
48 + sed -e '0,/"$/d' -e '/" GetLatest.\+$/,9999d' -e 's/^" \?//' \
49 + -e "s/\(Name Of File: \)\([^.]\+\)\.vim/\1*\2.txt*/" \
50 + plugin/lusty-explorer.vim > doc/lusty-explorer.txt
51 +}