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/ebnf-syntax/
Date: Fri, 11 May 2018 22:09:18
Message-Id: 1526076535.8eb4e7651f9e00821861bd349f1102479e2a4828.monsieurp@gentoo
1 commit: 8eb4e7651f9e00821861bd349f1102479e2a4828
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 11 22:06:25 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri May 11 22:08:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eb4e765
7
8 app-vim/ebnf-syntax: clean up old ebuild.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild | 22 ----------------------
13 1 file changed, 22 deletions(-)
14
15 diff --git a/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild b/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild
16 deleted file mode 100644
17 index 41bf445bdce..00000000000
18 --- a/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild
19 +++ /dev/null
20 @@ -1,22 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=0
25 -
26 -inherit vim-plugin
27 -
28 -DESCRIPTION="vim plugin: EBNF (ISO/IEC 14997) file syntax highlighting"
29 -HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=545"
30 -LICENSE="vim"
31 -KEYWORDS="alpha amd64 ia64 ~mips ppc ppc64 sparc x86"
32 -IUSE=""
33 -
34 -VIM_PLUGIN_HELPTEXT=\
35 -"This plugin provides syntax highlighting for EBNF (ISO/IEC 14997) files."
36 -
37 -src_unpack() {
38 - unpack ${A}
39 - cd "${S}"
40 - # don't use hi link, bug #101799.
41 - sed -i -e 's,hi link,hi def link,' syntax/ebnf.vim || die "sed failed"
42 -}