diff options
author | 2011-06-25 08:04:38 +0000 | |
---|---|---|
committer | 2011-06-25 08:04:38 +0000 | |
commit | a59e3cbf0ef8ba0153e496a1515788156dbaa164 (patch) | |
tree | 0b3af16c9848ee6e5664280548905a0fbe04391c /app-vim/gist | |
parent | Add Pardus patch to fix bug #369651 and fix dependency wrt bug #372477. (diff) | |
download | gentoo-2-a59e3cbf0ef8ba0153e496a1515788156dbaa164.tar.gz gentoo-2-a59e3cbf0ef8ba0153e496a1515788156dbaa164.tar.bz2 gentoo-2-a59e3cbf0ef8ba0153e496a1515788156dbaa164.zip |
Version bump. Use github mirror.
(Portage version: 2.2.0_alpha40/cvs/Linux x86_64)
Diffstat (limited to 'app-vim/gist')
-rw-r--r-- | app-vim/gist/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/gist/gist-5.0.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/app-vim/gist/ChangeLog b/app-vim/gist/ChangeLog index 67aa14bcc0a0..52769be08b38 100644 --- a/app-vim/gist/ChangeLog +++ b/app-vim/gist/ChangeLog @@ -1,6 +1,11 @@ # 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.1 2011/05/20 08:10:15 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/gist/ChangeLog,v 1.2 2011/06/25 08:04:38 radhermit Exp $ + +*gist-5.0 (25 Jun 2011) + + 25 Jun 2011; Tim Harder <radhermit@gentoo.org> +gist-5.0.ebuild: + Version bump. Use github mirror. *gist-4.9 (20 May 2011) diff --git a/app-vim/gist/gist-5.0.ebuild b/app-vim/gist/gist-5.0.ebuild new file mode 100644 index 000000000000..84b2a253b160 --- /dev/null +++ b/app-vim/gist/gist-5.0.ebuild @@ -0,0 +1,38 @@ +# 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.0.ebuild,v 1.1 2011/06/25 08:04:38 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="gist.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/gist.vim \ + > doc/gist.txt + + rm README +} |