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/fluxbox-syntax/
Date: Sun, 10 Feb 2019 23:11:41
Message-Id: 1549840271.ac7866bb70bd1b9041519280f79d3fbb36ff07bc.monsieurp@gentoo
1 commit: ac7866bb70bd1b9041519280f79d3fbb36ff07bc
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 1 17:47:50 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 10 23:11:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac7866bb
7
8 app-vim/fluxbox-syntax: 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 RepoMan-Options: --force
13
14 .../fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild | 28 ++++++++++++++++++++++
15 1 file changed, 28 insertions(+)
16
17 diff --git a/app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild b/app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild
18 new file mode 100644
19 index 00000000000..1165be5cb0a
20 --- /dev/null
21 +++ b/app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild
22 @@ -0,0 +1,28 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +inherit vim-plugin
29 +
30 +DESCRIPTION="vim plugin: fluxbox files syntax and indent"
31 +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=679"
32 +LICENSE="vim"
33 +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
34 +
35 +RDEPEND="app-vim/genindent"
36 +
37 +VIM_PLUGIN_HELPTEXT=\
38 +"This plugin provides syntax highlighting and indent settings for fluxbox
39 +menus and similar files. Upstream don't provide us with an ftdetect file,
40 +but a simple one has been created for you by this ebuild. You can manually
41 +set the filetype using :set filetype=fluxbox if necessary."
42 +
43 +VIM_PLUGIN_MESSAGES="filetype"
44 +
45 +src_prepare() {
46 + default
47 + mkdir ftdetect || die
48 + echo "au BufNewFile,BufRead /*/*fluxbox/*menu set filetype=fluxbox" \
49 + > ftdetect/fluxbox.vim || die
50 +}