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: Wed, 23 Feb 2022 17:04:17
Message-Id: 1645635835.32c854a4f75b5d4c38f5b8f85dab84ceb612b664.mgorny@gentoo
1 commit: 32c854a4f75b5d4c38f5b8f85dab84ceb612b664
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 23 15:52:02 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 23 17:03:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32c854a4
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 | 2 --
13 .../gentoo-syntax/gentoo-syntax-20220126.ebuild | 42 ----------------------
14 .../gentoo-syntax/gentoo-syntax-20220206.ebuild | 42 ----------------------
15 3 files changed, 86 deletions(-)
16
17 diff --git a/app-vim/gentoo-syntax/Manifest b/app-vim/gentoo-syntax/Manifest
18 index 5fb727bf38ec..48127840a21d 100644
19 --- a/app-vim/gentoo-syntax/Manifest
20 +++ b/app-vim/gentoo-syntax/Manifest
21 @@ -1,4 +1,2 @@
22 DIST gentoo-syntax-20211208.tar.bz2 18844 BLAKE2B 52e7025d46f5101f2e1c44afcbf3cba0756a1ec9c626f7af312bb5bbae518645c06c94bfc48822a721e2e3c1ed5f61376e88a074a9688cf4b5b3c352a99c87c9 SHA512 f1cfe2af440f7ed3042cbaa16558cb6df8038f439a2c3e7067f81751a37098854a3afb1653c7c3656ef85ad1874d2db9271429b92a25f494da6ee5c68819e631
23 -DIST gentoo-syntax-20220126.tar.bz2 19267 BLAKE2B c18f50e29f4aa75e4cc8d629b5086de3cef629b99454389bfe5eecbc61288e4344921360a2d64ea021be7f0269178e6348abf0d1481e0fc8b88e16a16fb73215 SHA512 bbedf2bf98eaf7b80abac2e6a66dcbba2f5024f1a4327535e5d956c4c034fa9be0395a36784a576caeaee81df27eb153687238388bfc2aeaf210498d8377c99d
24 -DIST gentoo-syntax-20220206.tar.bz2 19354 BLAKE2B e0eb286ec211d3cbdf9f5466b89cdd9483ee1ed66b282243d9638b60aeee1e01c1d9e8cb6d081998db9ec0e0e85ceabe4000a77c14e25e112d91d5a5ca15fcc9 SHA512 931bdcf2ccb8c98a1a547ecb0970af609b4f8d9f0040a6e389151a9cb3d16f227d45d00f49a760616f2f8e2e666b1cb56699e60f0f663bb5a5e6c8143a9fbe06
25 DIST gentoo-syntax-20220220.tar.bz2 19433 BLAKE2B 8f7fbbb56e41f4d682c824deb980035441195785f9ce80fd45808b55cf900c8e0455b5c670f82b1fc639c052792b78de5f0be1142eab853b0cabbd44c6ed0776 SHA512 4b515ca7936a16279c48310d1fa0f58979e35b1d84a2971bdcf4a004784efa3de99619851ac9da5ee0ee77a1f65eb28550d01013cffebd45e39fb70c0136ba12
26
27 diff --git a/app-vim/gentoo-syntax/gentoo-syntax-20220126.ebuild b/app-vim/gentoo-syntax/gentoo-syntax-20220126.ebuild
28 deleted file mode 100644
29 index cc256f13f274..000000000000
30 --- a/app-vim/gentoo-syntax/gentoo-syntax-20220126.ebuild
31 +++ /dev/null
32 @@ -1,42 +0,0 @@
33 -# Copyright 1999-2022 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit vim-plugin
39 -
40 -DESCRIPTION="vim plugin: Gentoo and Portage syntax highlighting"
41 -HOMEPAGE="https://github.com/gentoo/gentoo-syntax"
42 -SRC_URI="https://gitweb.gentoo.org/proj/gentoo-syntax.git/snapshot/${P}.tar.bz2"
43 -
44 -LICENSE="vim"
45 -SLOT="0"
46 -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"
47 -IUSE="ignore-glep31"
48 -
49 -VIM_PLUGIN_HELPFILES="gentoo-syntax"
50 -VIM_PLUGIN_MESSAGES="filetype"
51 -
52 -src_prepare() {
53 - default
54 - if use ignore-glep31 ; then
55 - for f in ftplugin/*.vim ; do
56 - ebegin "Removing UTF-8 rules from ${f} ..."
57 - sed -i -e 's~\(setlocal fileencoding=utf-8\)~" \1~' ${f} \
58 - || die "waah! bad sed voodoo. need more goats."
59 - eend $?
60 - done
61 - fi
62 -}
63 -
64 -pkg_postinst() {
65 - vim-plugin_pkg_postinst
66 -
67 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
68 - if use ignore-glep31 1>/dev/null ; then
69 - ewarn "You have chosen to disable the rules which ensure GLEP 31"
70 - ewarn "compliance. When editing ebuilds, please make sure you get"
71 - ewarn "the character set correct."
72 - fi
73 - fi
74 -}
75
76 diff --git a/app-vim/gentoo-syntax/gentoo-syntax-20220206.ebuild b/app-vim/gentoo-syntax/gentoo-syntax-20220206.ebuild
77 deleted file mode 100644
78 index cc256f13f274..000000000000
79 --- a/app-vim/gentoo-syntax/gentoo-syntax-20220206.ebuild
80 +++ /dev/null
81 @@ -1,42 +0,0 @@
82 -# Copyright 1999-2022 Gentoo Authors
83 -# Distributed under the terms of the GNU General Public License v2
84 -
85 -EAPI=7
86 -
87 -inherit vim-plugin
88 -
89 -DESCRIPTION="vim plugin: Gentoo and Portage syntax highlighting"
90 -HOMEPAGE="https://github.com/gentoo/gentoo-syntax"
91 -SRC_URI="https://gitweb.gentoo.org/proj/gentoo-syntax.git/snapshot/${P}.tar.bz2"
92 -
93 -LICENSE="vim"
94 -SLOT="0"
95 -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"
96 -IUSE="ignore-glep31"
97 -
98 -VIM_PLUGIN_HELPFILES="gentoo-syntax"
99 -VIM_PLUGIN_MESSAGES="filetype"
100 -
101 -src_prepare() {
102 - default
103 - if use ignore-glep31 ; then
104 - for f in ftplugin/*.vim ; do
105 - ebegin "Removing UTF-8 rules from ${f} ..."
106 - sed -i -e 's~\(setlocal fileencoding=utf-8\)~" \1~' ${f} \
107 - || die "waah! bad sed voodoo. need more goats."
108 - eend $?
109 - done
110 - fi
111 -}
112 -
113 -pkg_postinst() {
114 - vim-plugin_pkg_postinst
115 -
116 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
117 - if use ignore-glep31 1>/dev/null ; then
118 - ewarn "You have chosen to disable the rules which ensure GLEP 31"
119 - ewarn "compliance. When editing ebuilds, please make sure you get"
120 - ewarn "the character set correct."
121 - fi
122 - fi
123 -}