summaryrefslogtreecommitdiff
path: root/app-vim/fluxbox-syntax
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-01-14 01:14:50 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-01-14 01:14:50 +0000
commit94eb99943eafb48140b436b347abaaee77209c01 (patch)
treebb4f0519a6c0880b24c88b1666976a36a464a8df /app-vim/fluxbox-syntax
parenta7ec94f7d22ee22df2e424c1d3f842510b7993aa (diff)
gentoo auto-resync : 14:01:2024 - 01:14:49
Diffstat (limited to 'app-vim/fluxbox-syntax')
-rw-r--r--app-vim/fluxbox-syntax/Manifest1
-rw-r--r--app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild28
2 files changed, 0 insertions, 29 deletions
diff --git a/app-vim/fluxbox-syntax/Manifest b/app-vim/fluxbox-syntax/Manifest
index 79824029b5fc..15b52b32fdba 100644
--- a/app-vim/fluxbox-syntax/Manifest
+++ b/app-vim/fluxbox-syntax/Manifest
@@ -1,4 +1,3 @@
DIST fluxbox-syntax-1.5.tar.bz2 1376 BLAKE2B 2006668a89077febb4ec919354359cae1170156950abb553695d6424cb277bca69a5e8ffa93a9e4b09b990e96f9ee34654d34dc15320140dad589808ef9960dc SHA512 0567af6fe0994ea228ac56c3a26485ba5cce7762e3d70d6dced978e56017f6769072c83ae68125de3e03190562a7a10102bef038c02ae148cf70cc0c5951b8df
-EBUILD fluxbox-syntax-1.5-r1.ebuild 886 BLAKE2B f59b53cdcae36d9dfe27e6d6ff1b3353ae7a567a95093220127b27717585b0719062bddd485a63cb5586b95b7630c945f119419d15ac4a7d7a1f99a58af7fd79 SHA512 51697c27f4c28d7313d0f6dc72aa4ef0fd549b78c7ad30796dc98798924f2aa4b12aac94fc64f47e016ca703d3fa23b98646680a431ce7ae0ff49439c064dabb
EBUILD fluxbox-syntax-1.5-r2.ebuild 888 BLAKE2B b91eef5da291ed63440f3bb315d35eddf931d144990d5e57265cd64c60a4c197941c5428575c7d6b77e852f2ebf91ab9ea7d3dbd8df77851b0284efa27d1597f SHA512 0a174258046db1d6656b34501d58d409a082c846072de851943e464857af52a7d0e82553d3245a04659bafcb4f96524b257b0581b41d6b24f8e9684ef6d6500b
MISC metadata.xml 274 BLAKE2B bfa9b39d4cd1b8163066648034a81b6c9fc23284334d76cbf3b71711a9548646a095d1fefa5e68455645867b5b0c1a7de96e106949b58e1e2ef7cf788ca28bf4 SHA512 aca1820afddcb39050481e3b3ea0310dc197f723ddb1130abaad0ade665062ac12c3f4bc4dda016e1fc9767f15c2fa484dca08a8bca2860107ae82345dcdd63b
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
-}