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: Thu, 03 Feb 2022 08:42:17
Message-Id: 1643877475.d1f8740326287105db2004f87eba30b791e6cdd2.mgorny@gentoo
1 commit: d1f8740326287105db2004f87eba30b791e6cdd2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 3 08:37:55 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 3 08:37:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1f87403
7
8 app-vim/gentoo-syntax: Bump to 20220203
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-vim/gentoo-syntax/Manifest | 1 +
13 .../gentoo-syntax/gentoo-syntax-20220203.ebuild | 42 ++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/app-vim/gentoo-syntax/Manifest b/app-vim/gentoo-syntax/Manifest
17 index 6948e9f4b72e..0b32eea54552 100644
18 --- a/app-vim/gentoo-syntax/Manifest
19 +++ b/app-vim/gentoo-syntax/Manifest
20 @@ -1,2 +1,3 @@
21 DIST gentoo-syntax-20211208.tar.bz2 18844 BLAKE2B 52e7025d46f5101f2e1c44afcbf3cba0756a1ec9c626f7af312bb5bbae518645c06c94bfc48822a721e2e3c1ed5f61376e88a074a9688cf4b5b3c352a99c87c9 SHA512 f1cfe2af440f7ed3042cbaa16558cb6df8038f439a2c3e7067f81751a37098854a3afb1653c7c3656ef85ad1874d2db9271429b92a25f494da6ee5c68819e631
22 DIST gentoo-syntax-20220126.tar.bz2 19267 BLAKE2B c18f50e29f4aa75e4cc8d629b5086de3cef629b99454389bfe5eecbc61288e4344921360a2d64ea021be7f0269178e6348abf0d1481e0fc8b88e16a16fb73215 SHA512 bbedf2bf98eaf7b80abac2e6a66dcbba2f5024f1a4327535e5d956c4c034fa9be0395a36784a576caeaee81df27eb153687238388bfc2aeaf210498d8377c99d
23 +DIST gentoo-syntax-20220203.tar.bz2 19323 BLAKE2B e9947e6deefcb6974ef97c0ad2057b9d5052907a3f30ebce6d59cbf69a7555c1f1466eb896ffc669dcc8ddd8719037f5bca7ecac2a5d9f3a299710086ada95b3 SHA512 749943ed2edec9ac8285a88d551bc18ff386b23981d4aa233a4206688d2e3903804f5ea92a4476c6bfc04641c1fc4952c6c4980b5059df80cb6fbccc5469040c
24
25 diff --git a/app-vim/gentoo-syntax/gentoo-syntax-20220203.ebuild b/app-vim/gentoo-syntax/gentoo-syntax-20220203.ebuild
26 new file mode 100644
27 index 000000000000..cc256f13f274
28 --- /dev/null
29 +++ b/app-vim/gentoo-syntax/gentoo-syntax-20220203.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit vim-plugin
37 +
38 +DESCRIPTION="vim plugin: Gentoo and Portage syntax highlighting"
39 +HOMEPAGE="https://github.com/gentoo/gentoo-syntax"
40 +SRC_URI="https://gitweb.gentoo.org/proj/gentoo-syntax.git/snapshot/${P}.tar.bz2"
41 +
42 +LICENSE="vim"
43 +SLOT="0"
44 +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"
45 +IUSE="ignore-glep31"
46 +
47 +VIM_PLUGIN_HELPFILES="gentoo-syntax"
48 +VIM_PLUGIN_MESSAGES="filetype"
49 +
50 +src_prepare() {
51 + default
52 + if use ignore-glep31 ; then
53 + for f in ftplugin/*.vim ; do
54 + ebegin "Removing UTF-8 rules from ${f} ..."
55 + sed -i -e 's~\(setlocal fileencoding=utf-8\)~" \1~' ${f} \
56 + || die "waah! bad sed voodoo. need more goats."
57 + eend $?
58 + done
59 + fi
60 +}
61 +
62 +pkg_postinst() {
63 + vim-plugin_pkg_postinst
64 +
65 + if [[ -z ${REPLACING_VERSIONS} ]] ; then
66 + if use ignore-glep31 1>/dev/null ; then
67 + ewarn "You have chosen to disable the rules which ensure GLEP 31"
68 + ewarn "compliance. When editing ebuilds, please make sure you get"
69 + ewarn "the character set correct."
70 + fi
71 + fi
72 +}