Portage is a package management system used by Gentoo Linux
# ChangeLog for app-vim/vcscommand
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/vcscommand/ChangeLog,v 1.3 2008/06/20 13:12:16 hawking Exp $
*vcscommand-0.1_beta26 (20 Jun 2008)
20 Jun 2008; Ali Polatel
-vcscommand-0.1_beta16.ebuild, -vcscommand-0.1_beta19.ebuild,
+vcscommand-0.1_beta26.ebuild:
Version bump. Keyworded ~amd64. Dropped old.
*vcscommand-0.1_beta19 (06 Sep 2007)
06 Sep 2007; Ali Polatel
+vcscommand-0.1_beta19.ebuild:
Version bump.
*vcscommand-0.1_beta16 (08 May 2007)
08 May 2007; Mike Kelly
+vcscommand-0.1_beta16.ebuild:
Initial ebuild. This package is the successor to cvscommand, and has support
for SVN and SVK as well as CVS. Fixes Bug #170957.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
DIST vcscommand-0.1_beta26.tar.bz2 23230 RMD160 c7c8bee9ecbf207dde5e47fbb4ef49275b35ad1b SHA1 29dab450e304e9fc184001165cc9eef470184280 SHA256 4507a6dc3992ccb243b7cb989b6495b3be4f612774171a894d8839d501d40ef7
EBUILD vcscommand-0.1_beta26.ebuild 1283 RMD160 eb8b70c775ce9df52ae002e69de6cc03f1679b15 SHA1 38ef36c86fafd4e2ef573f0bf72005a1a1bed925 SHA256 53447845511d0b74cc9d9f349082a47ef44950bdcf0e6c5668d576c5dd67227d
MISC ChangeLog 841 RMD160 d169a3d33d8932437e587efd727d7ee7bba3d313 SHA1 aded49e0976d4458a4b4eb61aae21a49da200e79 SHA256 a2a93909cd676307a755296fa3584723bed061bcca38ab50ad3116ed1fb8be02
MISC metadata.xml 376 RMD160 52e59fe48129f152107668c01d80e464228a0a7e SHA1 ad129648b122c3c544b69a5ed5dd4ed2abfe7c58 SHA256 f8bf60ecc99584d6364cf7bdb7140dec01e13a6e33c6285760a8506d37f76f9c
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
iEYEARECAAYFAkhbrLQACgkQQU4yORhF8iCHJgCgs1pb/3G6cDCrozjXoEuCLqfL
GzAAn2lHu/zoIDi1DpDC/SQ1vwwVspJn
=c747
-----END PGP SIGNATURE-----
VIM 7 plugin useful for manipulating files controlled by CVS, SVN and
SVK within VIM, including committing changes and performings diffs using
the vimdiff system.
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/vcscommand/vcscommand-0.1_beta26.ebuild,v 1.1 2008/06/20 13:12:16 hawking Exp $
VIM_PLUGIN_VIM_VERSION="7.0"
inherit vim-plugin
DESCRIPTION="vim plugin: CVS/SVN/SVK integration plugin"
HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=90"
LICENSE="public-domain"
KEYWORDS="~amd64 ~x86"
IUSE="cvs git subversion svk"
RDEPEND="cvs? ( dev-util/cvs )
git? ( dev-util/git )
subversion? ( dev-util/subversion )
svk? ( dev-util/svk )
!app-vim/cvscommand
!app-vim/calendar" # conflict, bug 62677
VIM_PLUGIN_HELPFILES="vcscommand"
no_flags_die() {
eerror "Please choose at least one VCS system"
eerror "to be supported by this plugin."
die "No vcs systems set"
}
pkg_setup() {
elog "Note: Support for all VCS systems are enabled by use flags."
elog " Make sure you've enabled the flags you want."
use cvs || use git || use subversion || use svk || no_flags_die
}
src_unpack() {
unpack ${A}
cd "${S}"
use cvs || rm syntax/CVSAnnotate.vim plugin/vcscvs.vim
use git || rm plugin/vcsgit.vim
use subversion || rm syntax/SVNAnnotate.vim plugin/vcssvn.vim
use svk || rm syntax/SVKAnnotate.vim plugin/vcssvk.vim
}