diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-08-03 10:28:27 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-08-03 10:28:27 +0000 |
commit | 62cfcf055832437668d32577412f6b3ba0891969 (patch) | |
tree | 7f4821a3c1b6606444bd2eb70bf052452bacbc99 /app-vim/gist | |
parent | Version bump (bug #417411). (diff) | |
download | gentoo-2-62cfcf055832437668d32577412f6b3ba0891969.tar.gz gentoo-2-62cfcf055832437668d32577412f6b3ba0891969.tar.bz2 gentoo-2-62cfcf055832437668d32577412f6b3ba0891969.zip |
Remove old.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'app-vim/gist')
-rw-r--r-- | app-vim/gist/ChangeLog | 5 | ||||
-rw-r--r-- | app-vim/gist/gist-5.2.ebuild | 38 |
2 files changed, 4 insertions, 39 deletions
diff --git a/app-vim/gist/ChangeLog b/app-vim/gist/ChangeLog index 5be7619fd3fa..d33469100420 100644 --- a/app-vim/gist/ChangeLog +++ b/app-vim/gist/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-vim/gist # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/gist/ChangeLog,v 1.7 2012/08/03 10:27:40 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/gist/ChangeLog,v 1.8 2012/08/03 10:28:27 radhermit Exp $ + + 03 Aug 2012; Tim Harder <radhermit@gentoo.org> -gist-5.2.ebuild: + Remove old. *gist-6.8 (03 Aug 2012) diff --git a/app-vim/gist/gist-5.2.ebuild b/app-vim/gist/gist-5.2.ebuild deleted file mode 100644 index 493a91fc0179..000000000000 --- a/app-vim/gist/gist-5.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# 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 -} |