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/easytags: ChangeLog easytags-3.9.1.ebuild
Date: Tue, 25 Nov 2014 23:41:10
Message-Id: 20141125234105.84DBBAE9D@oystercatcher.gentoo.org
1 radhermit 14/11/25 23:41:05
2
3 Modified: ChangeLog
4 Added: easytags-3.9.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.22 app-vim/easytags/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 6 Nov 2014 04:52:17 -0000 1.21
24 +++ ChangeLog 25 Nov 2014 23:41:05 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-vim/easytags
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v 1.21 2014/11/06 04:52:17 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v 1.22 2014/11/25 23:41:05 radhermit Exp $
30 +
31 +*easytags-3.9.1 (25 Nov 2014)
32 +
33 + 25 Nov 2014; Tim Harder <radhermit@g.o> +easytags-3.9.1.ebuild:
34 + Version bump.
35
36 06 Nov 2014; Tim Harder <radhermit@g.o> -easytags-3.4.4.ebuild,
37 -easytags-3.7.ebuild:
38
39
40
41 1.1 app-vim/easytags/easytags-3.9.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/easytags-3.9.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/easytags-3.9.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: easytags-3.9.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/easytags-3.9.1.ebuild,v 1.1 2014/11/25 23:41:05 radhermit Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 )
54
55 inherit python-single-r1 vim-plugin
56
57 DESCRIPTION="vim plugin: automated tag file generation and syntax highlighting"
58 HOMEPAGE="http://peterodding.com/code/vim/easytags/"
59 SRC_URI="https://github.com/xolox/vim-${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
60 LICENSE="MIT"
61 KEYWORDS="~amd64 ~x86"
62 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
63
64 RDEPEND="${PYTHON_DEPS}
65 >=app-vim/vim-misc-1.16.1
66 dev-util/ctags"
67
68 VIM_PLUGIN_HELPFILES="${PN}.txt"
69
70 S=${WORKDIR}/vim-${P}
71
72 src_prepare() {
73 # remove unnecessary files
74 rm addon-info.json INSTALL.md README.md || die
75 }
76
77 src_install() {
78 vim-plugin_src_install
79
80 # fix scripts
81 fperms 755 /usr/share/vim/vimfiles/misc/easytags/{normalize-tags,why-so-slow}.py
82 python_fix_shebang "${ED}"/usr/share/vim/vimfiles/misc/easytags/{normalize-tags,why-so-slow}.py
83 }