Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/gentoo-syntax/
Date: Sun, 26 Feb 2017 17:18:57
Message-Id: 1488129526.4f73593569820663902f2e9f9dbd94a090e352ba.floppym@gentoo
1 commit: 4f73593569820663902f2e9f9dbd94a090e352ba
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 26 17:17:26 2017 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 26 17:18:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f735935
7
8 app-vim/gentoo-syntax: bump to 20170225
9
10 Package-Manager: Portage-2.3.3_p65_p263862, Repoman-2.3.1_p58_p263862
11
12 app-vim/gentoo-syntax/Manifest | 1 +
13 .../gentoo-syntax/gentoo-syntax-20170225.ebuild | 54 ++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/app-vim/gentoo-syntax/Manifest b/app-vim/gentoo-syntax/Manifest
17 index 8ebecdfafb..b7d90233d7 100644
18 --- a/app-vim/gentoo-syntax/Manifest
19 +++ b/app-vim/gentoo-syntax/Manifest
20 @@ -1 +1,2 @@
21 DIST gentoo-syntax-20160530.tar.gz 18950 SHA256 819495c10e594b2fef1fdcd80afa24ee437fe20b94ad9e7eb9e91f0a5be31919 SHA512 38881c5f16499eb053eb7a5514f6324b2a161f1392a044db0bbaf0cb71a0f17e1edebd4a685ff856a78525fbcb8c6267daa2503cfbc6f94d841cf3f6a25045bd WHIRLPOOL 41018200b7f79eec005f55e80d3f8b1eec1f33acdbf1a8bce03b282a27cf63bb08a4959e0fcd74ecc9972322bbf4b0b89755dbde35cedc87ee9a228d07519a33
22 +DIST gentoo-syntax-20170225.tar.gz 18939 SHA256 f9305c689f8eeb492fc2a7f9e9c90b6af1663e2f16dcf0b95d22e6395a6bb8e2 SHA512 2c01577910eccd413b85c094dbd12bf8445e2f560be1fffc4a4c3130b32587f9c298d8442b5cf12bd7d2950ab8c9e5b95a72f2f41c42c6dc939ffa2c26fd71d5 WHIRLPOOL 7350ddf65ebc9c64fd83997d2e7d9ce329fa434a150ee69b35d54adfd2097319c6492508a0d1d0938453f7ae5068d422448564ad292cb43fc45afb97097efdc7
23
24 diff --git a/app-vim/gentoo-syntax/gentoo-syntax-20170225.ebuild b/app-vim/gentoo-syntax/gentoo-syntax-20170225.ebuild
25 new file mode 100644
26 index 0000000000..9f0f7f267e
27 --- /dev/null
28 +++ b/app-vim/gentoo-syntax/gentoo-syntax-20170225.ebuild
29 @@ -0,0 +1,54 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +inherit vim-plugin
37 +
38 +if [[ ${PV} == 9999* ]] ; then
39 + EGIT_REPO_URI="https://github.com/gentoo/gentoo-syntax.git"
40 + inherit git-r3
41 +else
42 + SRC_URI="https://github.com/gentoo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
44 +fi
45 +
46 +DESCRIPTION="Gentoo and portage related syntax highlighting, filetype, and indent settings"
47 +HOMEPAGE="https://github.com/gentoo/gentoo-syntax"
48 +LICENSE="vim"
49 +IUSE="ignore-glep31"
50 +
51 +VIM_PLUGIN_HELPFILES="gentoo-syntax"
52 +VIM_PLUGIN_MESSAGES="filetype"
53 +
54 +src_prepare() {
55 + default
56 + if use ignore-glep31 ; then
57 + for f in ftplugin/*.vim ; do
58 + ebegin "Removing UTF-8 rules from ${f} ..."
59 + sed -i -e 's~\(setlocal fileencoding=utf-8\)~" \1~' ${f} \
60 + || die "waah! bad sed voodoo. need more goats."
61 + eend $?
62 + done
63 + fi
64 +}
65 +
66 +pkg_postinst() {
67 + vim-plugin_pkg_postinst
68 +
69 + if [[ -z ${REPLACING_VERSIONS} ]] ; then
70 + if use ignore-glep31 1>/dev/null ; then
71 + ewarn "You have chosen to disable the rules which ensure GLEP 31"
72 + ewarn "compliance. When editing ebuilds, please make sure you get"
73 + ewarn "the character set correct."
74 + else
75 + elog "Note for developers and anyone else who edits ebuilds:"
76 + elog " This release of gentoo-syntax now contains filetype rules to set"
77 + elog " fileencoding for ebuilds and ChangeLogs to utf-8 as per GLEP 31."
78 + elog " If you find this feature breaks things, please submit a bug and"
79 + elog " assign it to vim@g.o. You can use the 'ignore-glep31' USE"
80 + elog " flag to remove these rules."
81 + fi
82 + fi
83 +}