Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/gentoo-syntax/
Date: Sat, 09 Oct 2021 19:31:46
Message-Id: 1633807898.b322539ae12545210b5889b15e23003ee736a5b6.mgorny@gentoo
1 commit: b322539ae12545210b5889b15e23003ee736a5b6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 9 19:30:52 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 9 19:31:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b322539a
7
8 app-vim/gentoo-syntax: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-vim/gentoo-syntax/Manifest | 3 --
13 .../gentoo-syntax/gentoo-syntax-20210716.ebuild | 42 ----------------------
14 .../gentoo-syntax/gentoo-syntax-20210828.ebuild | 42 ----------------------
15 .../gentoo-syntax/gentoo-syntax-20210901.ebuild | 42 ----------------------
16 4 files changed, 129 deletions(-)
17
18 diff --git a/app-vim/gentoo-syntax/Manifest b/app-vim/gentoo-syntax/Manifest
19 index 8192b2f72e1..e94ffd19d1f 100644
20 --- a/app-vim/gentoo-syntax/Manifest
21 +++ b/app-vim/gentoo-syntax/Manifest
22 @@ -1,4 +1 @@
23 -DIST gentoo-syntax-20210716.tar.bz2 18872 BLAKE2B faef2f356331c8560cb8e8014ad1a32a299f94fe8d05be499955cb78f1537f85abe44864b782df34244c3e606443b2146bd58a55047b23d327a548a436e818dc SHA512 f1a374fb5cf05563ea8cafa2209c9e8ba62bc072cac99202f486c3f7412cbb63432a33830e285ba706f8f73ee7f7bfd4e0b30bfad6feee1643e862b86495b82e
24 -DIST gentoo-syntax-20210828.tar.bz2 18872 BLAKE2B bd3e152718b921aef8ce93e2d3e66d6195ab01801ea60987f62f9cb541fb726c2d552b6ec341943c1ca0e0cc1419c1cb75266e653b8bc958c8103855688f3d54 SHA512 e148c42b3e3281780d4f23ff1e464ba3c8404b3a4ba566a1a685c8364b6dd174830b489d5c7b561c3e30375fd9f510cfbf56d92f81c3f8fec8ab792ab48aa62a
25 -DIST gentoo-syntax-20210901.tar.bz2 18876 BLAKE2B ef3913d8e631903003f469a8500c24f751ab70c17b1718cb9cd06b1e81b2dc7c07ed686b03be1da05afd5c238b8fddf67d35a63e7f381176be9340371cdc5dc9 SHA512 40c4f8522ce90bb529fd1cb050d1dd50010547006e385827980559a9febaa78f6d29b4798f6580a0c00de32db21a5528a051c2906d9dec95b62b992ea4875afe
26 DIST gentoo-syntax-20210911.tar.bz2 18865 BLAKE2B 14dfe4b1eaab39a7de11c9b2e00c6a39385cd81d5717522dbac1f9ff265047c9ded745c335cca88413f6ad622f2858d996bdb39c5f4b1b4796ef7740c48c5f68 SHA512 b7ac7aba50c086e1e550692426bb38dbca5bf4770c148ff4989686ef043a2d990710bec782f1baba582ff67da3b3db007a4dbc6dec16f69830312205f1a45d3c
27
28 diff --git a/app-vim/gentoo-syntax/gentoo-syntax-20210716.ebuild b/app-vim/gentoo-syntax/gentoo-syntax-20210716.ebuild
29 deleted file mode 100644
30 index 9a1891798a1..00000000000
31 --- a/app-vim/gentoo-syntax/gentoo-syntax-20210716.ebuild
32 +++ /dev/null
33 @@ -1,42 +0,0 @@
34 -# Copyright 1999-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -inherit vim-plugin
40 -
41 -DESCRIPTION="vim plugin: Gentoo and Portage syntax highlighting"
42 -HOMEPAGE="https://github.com/gentoo/gentoo-syntax"
43 -SRC_URI="https://gitweb.gentoo.org/proj/gentoo-syntax.git/snapshot/${P}.tar.bz2"
44 -
45 -LICENSE="vim"
46 -SLOT="0"
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 -IUSE="ignore-glep31"
49 -
50 -VIM_PLUGIN_HELPFILES="gentoo-syntax"
51 -VIM_PLUGIN_MESSAGES="filetype"
52 -
53 -src_prepare() {
54 - default
55 - if use ignore-glep31 ; then
56 - for f in ftplugin/*.vim ; do
57 - ebegin "Removing UTF-8 rules from ${f} ..."
58 - sed -i -e 's~\(setlocal fileencoding=utf-8\)~" \1~' ${f} \
59 - || die "waah! bad sed voodoo. need more goats."
60 - eend $?
61 - done
62 - fi
63 -}
64 -
65 -pkg_postinst() {
66 - vim-plugin_pkg_postinst
67 -
68 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
69 - if use ignore-glep31 1>/dev/null ; then
70 - ewarn "You have chosen to disable the rules which ensure GLEP 31"
71 - ewarn "compliance. When editing ebuilds, please make sure you get"
72 - ewarn "the character set correct."
73 - fi
74 - fi
75 -}
76
77 diff --git a/app-vim/gentoo-syntax/gentoo-syntax-20210828.ebuild b/app-vim/gentoo-syntax/gentoo-syntax-20210828.ebuild
78 deleted file mode 100644
79 index 72f25ef766b..00000000000
80 --- a/app-vim/gentoo-syntax/gentoo-syntax-20210828.ebuild
81 +++ /dev/null
82 @@ -1,42 +0,0 @@
83 -# Copyright 1999-2021 Gentoo Authors
84 -# Distributed under the terms of the GNU General Public License v2
85 -
86 -EAPI=7
87 -
88 -inherit vim-plugin
89 -
90 -DESCRIPTION="vim plugin: Gentoo and Portage syntax highlighting"
91 -HOMEPAGE="https://github.com/gentoo/gentoo-syntax"
92 -SRC_URI="https://gitweb.gentoo.org/proj/gentoo-syntax.git/snapshot/${P}.tar.bz2"
93 -
94 -LICENSE="vim"
95 -SLOT="0"
96 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
97 -IUSE="ignore-glep31"
98 -
99 -VIM_PLUGIN_HELPFILES="gentoo-syntax"
100 -VIM_PLUGIN_MESSAGES="filetype"
101 -
102 -src_prepare() {
103 - default
104 - if use ignore-glep31 ; then
105 - for f in ftplugin/*.vim ; do
106 - ebegin "Removing UTF-8 rules from ${f} ..."
107 - sed -i -e 's~\(setlocal fileencoding=utf-8\)~" \1~' ${f} \
108 - || die "waah! bad sed voodoo. need more goats."
109 - eend $?
110 - done
111 - fi
112 -}
113 -
114 -pkg_postinst() {
115 - vim-plugin_pkg_postinst
116 -
117 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
118 - if use ignore-glep31 1>/dev/null ; then
119 - ewarn "You have chosen to disable the rules which ensure GLEP 31"
120 - ewarn "compliance. When editing ebuilds, please make sure you get"
121 - ewarn "the character set correct."
122 - fi
123 - fi
124 -}
125
126 diff --git a/app-vim/gentoo-syntax/gentoo-syntax-20210901.ebuild b/app-vim/gentoo-syntax/gentoo-syntax-20210901.ebuild
127 deleted file mode 100644
128 index 72f25ef766b..00000000000
129 --- a/app-vim/gentoo-syntax/gentoo-syntax-20210901.ebuild
130 +++ /dev/null
131 @@ -1,42 +0,0 @@
132 -# Copyright 1999-2021 Gentoo Authors
133 -# Distributed under the terms of the GNU General Public License v2
134 -
135 -EAPI=7
136 -
137 -inherit vim-plugin
138 -
139 -DESCRIPTION="vim plugin: Gentoo and Portage syntax highlighting"
140 -HOMEPAGE="https://github.com/gentoo/gentoo-syntax"
141 -SRC_URI="https://gitweb.gentoo.org/proj/gentoo-syntax.git/snapshot/${P}.tar.bz2"
142 -
143 -LICENSE="vim"
144 -SLOT="0"
145 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
146 -IUSE="ignore-glep31"
147 -
148 -VIM_PLUGIN_HELPFILES="gentoo-syntax"
149 -VIM_PLUGIN_MESSAGES="filetype"
150 -
151 -src_prepare() {
152 - default
153 - if use ignore-glep31 ; then
154 - for f in ftplugin/*.vim ; do
155 - ebegin "Removing UTF-8 rules from ${f} ..."
156 - sed -i -e 's~\(setlocal fileencoding=utf-8\)~" \1~' ${f} \
157 - || die "waah! bad sed voodoo. need more goats."
158 - eend $?
159 - done
160 - fi
161 -}
162 -
163 -pkg_postinst() {
164 - vim-plugin_pkg_postinst
165 -
166 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
167 - if use ignore-glep31 1>/dev/null ; then
168 - ewarn "You have chosen to disable the rules which ensure GLEP 31"
169 - ewarn "compliance. When editing ebuilds, please make sure you get"
170 - ewarn "the character set correct."
171 - fi
172 - fi
173 -}