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