Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-vim/gentoo-syntax: ChangeLog gentoo-syntax-20141129.ebuild gentoo-syntax-20141102.ebuild
Date: Sat, 29 Nov 2014 04:47:43
Message-Id: 20141129044738.C4BCCB222@oystercatcher.gentoo.org
1 radhermit 14/11/29 04:47:38
2
3 Modified: ChangeLog
4 Added: gentoo-syntax-20141129.ebuild
5 Removed: gentoo-syntax-20141102.ebuild
6 Log:
7 Version bump (fixes bug #531076).
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
10
11 Revision Changes Path
12 1.161 app-vim/gentoo-syntax/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/gentoo-syntax/ChangeLog?rev=1.161&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/gentoo-syntax/ChangeLog?rev=1.161&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/gentoo-syntax/ChangeLog?r1=1.160&r2=1.161
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-vim/gentoo-syntax/ChangeLog,v
21 retrieving revision 1.160
22 retrieving revision 1.161
23 diff -u -r1.160 -r1.161
24 --- ChangeLog 2 Nov 2014 22:08:26 -0000 1.160
25 +++ ChangeLog 29 Nov 2014 04:47:38 -0000 1.161
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-vim/gentoo-syntax
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-vim/gentoo-syntax/ChangeLog,v 1.160 2014/11/02 22:08:26 radhermit Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-vim/gentoo-syntax/ChangeLog,v 1.161 2014/11/29 04:47:38 radhermit Exp $
31 +
32 +*gentoo-syntax-20141129 (29 Nov 2014)
33 +
34 + 29 Nov 2014; Tim Harder <radhermit@g.o>
35 + -gentoo-syntax-20141102.ebuild, +gentoo-syntax-20141129.ebuild:
36 + Version bump (fixes bug #531076).
37
38 *gentoo-syntax-20141102 (02 Nov 2014)
39
40
41
42
43 1.1 app-vim/gentoo-syntax/gentoo-syntax-20141129.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/gentoo-syntax/gentoo-syntax-20141129.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/gentoo-syntax/gentoo-syntax-20141129.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gentoo-syntax-20141129.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-vim/gentoo-syntax/gentoo-syntax-20141129.ebuild,v 1.1 2014/11/29 04:47:38 radhermit Exp $
53
54 EAPI=5
55
56 inherit vim-plugin
57
58 DESCRIPTION="vim plugin: Gentoo and portage related syntax highlighting, filetype, and indent settings"
59 HOMEPAGE="http://www.gentoo.org/"
60
61 LICENSE="vim"
62 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
63 IUSE="ignore-glep31"
64
65 VIM_PLUGIN_HELPFILES="gentoo-syntax"
66 VIM_PLUGIN_MESSAGES="filetype"
67
68 src_prepare() {
69 if use ignore-glep31 ; then
70 for f in ftplugin/*.vim ; do
71 ebegin "Removing UTF-8 rules from ${f} ..."
72 sed -i -e 's~\(setlocal fileencoding=utf-8\)~" \1~' ${f} \
73 || die "waah! bad sed voodoo. need more goats."
74 eend $?
75 done
76 fi
77 }
78
79 pkg_postinst() {
80 vim-plugin_pkg_postinst
81
82 if [[ -z ${REPLACING_VERSIONS} ]] ; then
83 if use ignore-glep31 1>/dev/null ; then
84 ewarn "You have chosen to disable the rules which ensure GLEP 31"
85 ewarn "compliance. When editing ebuilds, please make sure you get"
86 ewarn "the character set correct."
87 else
88 elog "Note for developers and anyone else who edits ebuilds:"
89 elog " This release of gentoo-syntax now contains filetype rules to set"
90 elog " fileencoding for ebuilds and ChangeLogs to utf-8 as per GLEP 31."
91 elog " If you find this feature breaks things, please submit a bug and"
92 elog " assign it to vim@g.o. You can use the 'ignore-glep31' USE"
93 elog " flag to remove these rules."
94 fi
95 fi
96 }