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-2.5.ebuild
Date: Fri, 02 Sep 2011 19:31:28
Message-Id: 20110902193119.6E47E2004C@flycatcher.gentoo.org
1 radhermit 11/09/02 19:31:19
2
3 Modified: ChangeLog
4 Added: easytags-2.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 app-vim/easytags/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 31 Aug 2011 10:27:02 -0000 1.4
24 +++ ChangeLog 2 Sep 2011 19:31:19 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-vim/easytags
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v 1.4 2011/08/31 10:27:02 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v 1.5 2011/09/02 19:31:19 radhermit Exp $
30 +
31 +*easytags-2.5 (02 Sep 2011)
32 +
33 + 02 Sep 2011; Tim Harder <radhermit@g.o> +easytags-2.5.ebuild:
34 + Version bump.
35
36 31 Aug 2011; Tim Harder <radhermit@g.o> -easytags-2.4.9.ebuild,
37 -easytags-2.4.11.ebuild:
38
39
40
41 1.1 app-vim/easytags/easytags-2.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/easytags-2.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/easytags-2.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: easytags-2.5.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/easytags-2.5.ebuild,v 1.1 2011/09/02 19:31:19 radhermit Exp $
51
52 EAPI=4
53
54 inherit vim-plugin
55
56 DESCRIPTION="vim plugin: automated tag file generation and syntax highlighting"
57 HOMEPAGE="http://peterodding.com/code/vim/easytags/"
58 SRC_URI="https://github.com/xolox/vim-${PN}/tarball/${PV} -> ${P}.tar.gz"
59 LICENSE="MIT"
60 KEYWORDS="~amd64 ~x86"
61 IUSE=""
62
63 RDEPEND="|| ( dev-lang/python:2.7 dev-lang/python:2.6 )
64 >=app-vim/xolox-misc-20110831
65 dev-util/ctags"
66
67 VIM_PLUGIN_HELPFILES="easytags.txt"
68
69 src_unpack() {
70 unpack ${A}
71 mv *-${PN}-* "${S}"
72 }
73
74 src_prepare() {
75 rm INSTALL.md README.md
76 rm -rf autoload/xolox/misc
77 }
78
79 src_install() {
80 vim-plugin_src_install
81
82 # Make scripts executable
83 fperms 755 /usr/share/vim/vimfiles/misc/easytags/{normalize-tags,why-so-slow}.py
84 }