diff options
-rw-r--r-- | app-vim/vcscommand/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/vcscommand/vcscommand-1.99.45.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/app-vim/vcscommand/ChangeLog b/app-vim/vcscommand/ChangeLog index 6716c58ae1c5..754a3fdb6ad3 100644 --- a/app-vim/vcscommand/ChangeLog +++ b/app-vim/vcscommand/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/vcscommand # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/vcscommand/ChangeLog,v 1.21 2011/10/10 08:26:23 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/vcscommand/ChangeLog,v 1.22 2011/10/24 03:22:35 radhermit Exp $ + +*vcscommand-1.99.45 (24 Oct 2011) + + 24 Oct 2011; Tim Harder <radhermit@gentoo.org> +vcscommand-1.99.45.ebuild: + Version bump. *vcscommand-1.99.44 (10 Oct 2011) diff --git a/app-vim/vcscommand/vcscommand-1.99.45.ebuild b/app-vim/vcscommand/vcscommand-1.99.45.ebuild new file mode 100644 index 000000000000..c3db3bcfd404 --- /dev/null +++ b/app-vim/vcscommand/vcscommand-1.99.45.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/vcscommand/vcscommand-1.99.45.ebuild,v 1.1 2011/10/24 03:22:35 radhermit Exp $ + +EAPI=4 + +inherit vim-plugin + +MY_PN="${PN}.vim" +DESCRIPTION="vim plugin: CVS/SVN/SVK/git/bzr/hg integration plugin" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=90" +SRC_URI="https://github.com/vim-scripts/${MY_PN}/tarball/${PV} -> ${P}.tar.gz" +LICENSE="MIT" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" +IUSE="" + +RDEPEND="!app-vim/cvscommand" + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +src_unpack() { + unpack ${A} + mv *-${MY_PN}-* "${S}" +} + +src_prepare() { + rm README || die +} |