# ChangeLog for app-vim/gist
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/gist/ChangeLog,v 1.3 2011/09/19 06:14:45 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-vim/gist/ChangeLog,v 1.4 2011/10/14 22:21:54 radhermit Exp $
+
+*gist-5.2 (14 Oct 2011)
+
+ 14 Oct 2011; Tim Harder <radhermit@gentoo.org> +gist-5.2.ebuild:
+ Version bump.
*gist-5.1 (19 Sep 2011)
--- /dev/null
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/gist/gist-5.2.ebuild,v 1.1 2011/10/14 22:21:54 radhermit Exp $
+
+EAPI=4
+
+inherit vim-plugin
+
+MY_PN="Gist"
+DESCRIPTION="vim plugin: interact with gists (gist.github.com)"
+HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=2423"
+SRC_URI="https://github.com/vim-scripts/${MY_PN}.vim/tarball/${PV} -> ${P}.tar.gz"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="net-misc/curl
+ dev-vcs/git"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"
+
+src_unpack() {
+ unpack ${A}
+ mv *-${MY_PN}.vim-* "${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 '0,/"=\+$/d' -e '/" GetLatest.\+$/,9999d' -e 's/^" \?//' \
+ -e 's/\(File: \)\([^.]\+\)\.vim/\1*\2.txt*/' \
+ plugin/${PN}.vim \
+ > doc/${PN}.txt
+
+ rm README || die
+}
# ChangeLog for app-vim/slimv
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/slimv/ChangeLog,v 1.11 2011/10/10 08:34:49 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-vim/slimv/ChangeLog,v 1.12 2011/10/14 22:23:54 radhermit Exp $
+
+*slimv-0.9.1 (14 Oct 2011)
+
+ 14 Oct 2011; Tim Harder <radhermit@gentoo.org> +slimv-0.9.1.ebuild:
+ Version bump.
10 Oct 2011; Tim Harder <radhermit@gentoo.org> slimv-0.8.6.ebuild,
slimv-0.9.0.ebuild:
--- /dev/null
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/slimv/slimv-0.9.1.ebuild,v 1.1 2011/10/14 22:23:54 radhermit Exp $
+
+EAPI=4
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: aid Lisp development by providing a SLIME-like Lisp and Clojure REPL"
+HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=2531"
+SRC_URI="https://github.com/vim-scripts/${PN}.vim/tarball/${PV} -> ${P}.tar.gz"
+LICENSE="public-domain"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="|| ( app-editors/vim[python] app-editors/gvim[python] )
+ >=dev-lang/python-2.4
+ || (
+ dev-lisp/clisp
+ dev-lang/clojure
+ dev-lisp/abcl
+ dev-lisp/clozurecl
+ dev-lisp/ecls
+ dev-lisp/sbcl
+ )"
+
+VIM_PLUGIN_HELPFILES="slimv.txt"
+
+src_unpack() {
+ unpack ${A}
+ mv *-${PN}.vim-* "${S}"
+}
+
+src_prepare() {
+ # Remove emacs related files
+ rm -r slime swank-clojure || die
+
+ rm README || die
+}