diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-10-31 04:00:18 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-10-31 04:00:18 +0000 |
commit | f67ca271d968c3670f34da6aa1088b74d3453f65 (patch) | |
tree | be0a0a421125578aa5173b8a4db8a9e8b23a1061 /app-vim | |
parent | Remove old. (diff) | |
download | gentoo-2-f67ca271d968c3670f34da6aa1088b74d3453f65.tar.gz gentoo-2-f67ca271d968c3670f34da6aa1088b74d3453f65.tar.bz2 gentoo-2-f67ca271d968c3670f34da6aa1088b74d3453f65.zip |
Version bump.
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/minibufexpl/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/minibufexpl/minibufexpl-6.4.3.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/app-vim/minibufexpl/ChangeLog b/app-vim/minibufexpl/ChangeLog index 245a4a50b4d4..c1464e62a23a 100644 --- a/app-vim/minibufexpl/ChangeLog +++ b/app-vim/minibufexpl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/minibufexpl # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/minibufexpl/ChangeLog,v 1.28 2011/07/21 00:51:51 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/minibufexpl/ChangeLog,v 1.29 2011/10/31 04:00:18 radhermit Exp $ + +*minibufexpl-6.4.3 (31 Oct 2011) + + 31 Oct 2011; Tim Harder <radhermit@gentoo.org> +minibufexpl-6.4.3.ebuild: + Version bump. 21 Jul 2011; Tim Harder <radhermit@gentoo.org> -minibufexpl-6.4.1_p4.ebuild, -minibufexpl-6.4.1_p5.ebuild: diff --git a/app-vim/minibufexpl/minibufexpl-6.4.3.ebuild b/app-vim/minibufexpl/minibufexpl-6.4.3.ebuild new file mode 100644 index 000000000000..0a5297e2eba3 --- /dev/null +++ b/app-vim/minibufexpl/minibufexpl-6.4.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/minibufexpl/minibufexpl-6.4.3.ebuild,v 1.1 2011/10/31 04:00:18 radhermit Exp $ + +EAPI=4 + +inherit vim-plugin + +MY_PN="${PN}.vim" +DESCRIPTION="vim plugin: easily switch between buffers" +HOMEPAGE="https://github.com/fholgado/minibufexpl.vim" +SRC_URI="https://github.com/fholgado/${MY_PN}/tarball/${PV} -> ${P}.tar.gz" + +LICENSE="as-is" +KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86" +IUSE="" + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +src_unpack() { + unpack ${A} + mv *-${MY_PN}-* "${S}" +} + +src_prepare() { + # There's good documentation included with the script, but it's not + # in a helpfile. Since there's rather too much information to include + # in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc. + mkdir "${S}"/doc + sed -e '1,/"=\+$/d' -e '/"=\+$/,9999d' -e 's/^" \?//' \ + -e 's/\(Name Of File: \)\([^.]\+\)\.vim/\1*\2.txt*/' \ + plugin/${PN}.vim \ + > doc/${PN}.txt + + # Discard unwanted files + rm .gitignore README project.html || die +} |