summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-01-13 18:23:49 +0100
committerMichał Górny <mgorny@gentoo.org>2024-01-13 19:50:09 +0100
commitc2f392f9269ac6246886ad6f009c1b35fa7609d0 (patch)
tree432b011d1467f23b114998bf142f3fc5c72ca68d /app-vim/fluxbox-syntax
parentapp-vim/eselect-syntax: drop 20070506-r2, EAPI6-- (diff)
downloadgentoo-c2f392f9269ac6246886ad6f009c1b35fa7609d0.tar.gz
gentoo-c2f392f9269ac6246886ad6f009c1b35fa7609d0.tar.bz2
gentoo-c2f392f9269ac6246886ad6f009c1b35fa7609d0.zip
app-vim/fluxbox-syntax: drop 1.5-r1, EAPI6--
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-vim/fluxbox-syntax')
-rw-r--r--app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild28
1 files changed, 0 insertions, 28 deletions
diff --git a/app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild b/app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild
deleted file mode 100644
index 359380c0e8b5..000000000000
--- a/app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: fluxbox files syntax and indent"
-HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=679"
-LICENSE="vim"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="app-vim/genindent"
-
-VIM_PLUGIN_HELPTEXT=\
-"This plugin provides syntax highlighting and indent settings for fluxbox
-menus and similar files. Upstream don't provide us with an ftdetect file,
-but a simple one has been created for you by this ebuild. You can manually
-set the filetype using :set filetype=fluxbox if necessary."
-
-VIM_PLUGIN_MESSAGES="filetype"
-
-src_prepare() {
- default
- mkdir ftdetect || die
- echo "au BufNewFile,BufRead /*/*fluxbox/*menu set filetype=fluxbox" \
- > ftdetect/fluxbox.vim || die
-}