Gentoo Archives: gentoo-commits

From: "Ali Polatel (hawking)" <hawking@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-vim/vcscommand: ChangeLog vcscommand-0.1_beta28.ebuild
Date: Thu, 16 Oct 2008 16:51:13
Message-Id: E1KqW46-00070G-2y@stork.gentoo.org
1 hawking 08/10/16 16:51:10
2
3 Modified: ChangeLog
4 Added: vcscommand-0.1_beta28.ebuild
5 Log:
6 Version bump.
7 (Portage version: -svn/cvs/Linux 2.6.26-gentoo x86_64)
8
9 Revision Changes Path
10 1.6 app-vim/vcscommand/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-vim/vcscommand/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-vim/vcscommand/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-vim/vcscommand/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-vim/vcscommand/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 20 Sep 2008 15:43:20 -0000 1.5
23 +++ ChangeLog 16 Oct 2008 16:51:10 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-vim/vcscommand
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-vim/vcscommand/ChangeLog,v 1.5 2008/09/20 15:43:20 hawking Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-vim/vcscommand/ChangeLog,v 1.6 2008/10/16 16:51:10 hawking Exp $
29 +
30 +*vcscommand-0.1_beta28 (16 Oct 2008)
31 +
32 + 16 Oct 2008; Ali Polatel <hawking@g.o>
33 + +vcscommand-0.1_beta28.ebuild:
34 + Version bump.
35
36 *vcscommand-0.1_beta27 (20 Sep 2008)
37
38
39
40
41 1.1 app-vim/vcscommand/vcscommand-0.1_beta28.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-vim/vcscommand/vcscommand-0.1_beta28.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-vim/vcscommand/vcscommand-0.1_beta28.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vcscommand-0.1_beta28.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-vim/vcscommand/vcscommand-0.1_beta28.ebuild,v 1.1 2008/10/16 16:51:10 hawking Exp $
51
52 VIM_PLUGIN_VIM_VERSION="7.0"
53 inherit vim-plugin
54
55 DESCRIPTION="vim plugin: CVS/SVN/SVK integration plugin"
56 HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=90"
57
58 LICENSE="public-domain"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="cvs git subversion svk"
61
62 RDEPEND="cvs? ( dev-util/cvs )
63 git? ( dev-util/git )
64 subversion? ( dev-util/subversion )
65 svk? ( dev-util/svk )
66 !app-vim/cvscommand
67 !app-vim/calendar" # conflict, bug 62677
68
69 VIM_PLUGIN_HELPFILES="vcscommand"
70
71 no_flags_die() {
72 eerror "Please choose at least one VCS system"
73 eerror "to be supported by this plugin."
74 die "No vcs systems set"
75 }
76
77 pkg_setup() {
78 elog "Note: Support for all VCS systems are enabled by use flags."
79 elog " Make sure you've enabled the flags you want."
80
81 use cvs || use git || use subversion || use svk || no_flags_die
82 }
83
84 src_unpack() {
85 unpack ${A}
86 cd "${S}"
87
88 use cvs || rm syntax/CVSAnnotate.vim plugin/vcscvs.vim
89 use git || rm plugin/vcsgit.vim
90 use subversion || rm syntax/SVNAnnotate.vim plugin/vcssvn.vim
91 use svk || rm syntax/SVKAnnotate.vim plugin/vcssvk.vim
92 }