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.4.12.ebuild
Date: Wed, 31 Aug 2011 10:25:55
Message-Id: 20110831102546.619312004C@flycatcher.gentoo.org
1 radhermit 11/08/31 10:25:46
2
3 Modified: ChangeLog
4 Added: easytags-2.4.12.ebuild
5 Log:
6 Version bump. Add dependency on external xolox-misc scripts.
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 app-vim/easytags/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 12 Jul 2011 06:33:54 -0000 1.2
24 +++ ChangeLog 31 Aug 2011 10:25:46 -0000 1.3
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.2 2011/07/12 06:33:54 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v 1.3 2011/08/31 10:25:46 radhermit Exp $
30 +
31 +*easytags-2.4.12 (31 Aug 2011)
32 +
33 + 31 Aug 2011; Tim Harder <radhermit@g.o> +easytags-2.4.12.ebuild:
34 + Version bump. Add dependency on external xolox-misc scripts.
35
36 *easytags-2.4.11 (12 Jul 2011)
37
38
39
40
41 1.1 app-vim/easytags/easytags-2.4.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/easytags-2.4.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-vim/easytags/easytags-2.4.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: easytags-2.4.12.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.4.12.ebuild,v 1.1 2011/08/31 10:25:46 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
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 }