diff options
author | Tom Martin <slarti@gentoo.org> | 2005-03-05 00:03:54 +0000 |
---|---|---|
committer | Tom Martin <slarti@gentoo.org> | 2005-03-05 00:03:54 +0000 |
commit | 7f7277e0ce045425c56be0c303170bb45beccc3c (patch) | |
tree | 20349a707e97cf182c567d9fec3a4599a33a1423 /app-vim | |
parent | Manifest recommit (diff) | |
download | gentoo-2-7f7277e0ce045425c56be0c303170bb45beccc3c.tar.gz gentoo-2-7f7277e0ce045425c56be0c303170bb45beccc3c.tar.bz2 gentoo-2-7f7277e0ce045425c56be0c303170bb45beccc3c.zip |
Version bump -> 0.9.10
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/vimirc/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/vimirc/Manifest | 6 | ||||
-rw-r--r-- | app-vim/vimirc/files/digest-vimirc-0.9.10 | 1 | ||||
-rw-r--r-- | app-vim/vimirc/vimirc-0.9.10.ebuild | 34 |
4 files changed, 45 insertions, 3 deletions
diff --git a/app-vim/vimirc/ChangeLog b/app-vim/vimirc/ChangeLog index 3cc9b22dd483..b3d1dc31cdf7 100644 --- a/app-vim/vimirc/ChangeLog +++ b/app-vim/vimirc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/vimirc # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/vimirc/ChangeLog,v 1.19 2005/02/18 20:26:45 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/vimirc/ChangeLog,v 1.20 2005/03/05 00:03:54 slarti Exp $ + +*vimirc-0.9.10 (04 Mar 2005) + + 04 Mar 2005; Tom Martin <slarti@gentoo.org> +vimirc-0.9.10.ebuild: + Version bump. *vimirc-0.8.5-r1 (18 Feb 2005) diff --git a/app-vim/vimirc/Manifest b/app-vim/vimirc/Manifest index acaba64c02e9..70aefff4cf46 100644 --- a/app-vim/vimirc/Manifest +++ b/app-vim/vimirc/Manifest @@ -1,6 +1,8 @@ -MD5 727a0439b6414317f15fcb5e1ae56182 vimirc-0.8.11.ebuild 970 MD5 844459232c1bc8e3e2f4d46b203b01b7 ChangeLog 453 -MD5 95835999517d0b7ec05d023f64e381ed vimirc-0.8.5-r1.ebuild 966 +MD5 727a0439b6414317f15fcb5e1ae56182 vimirc-0.8.11.ebuild 970 +MD5 727a0439b6414317f15fcb5e1ae56182 vimirc-0.9.10.ebuild 970 MD5 9771ca4ff90b56dddc4acfadc6f6a01e metadata.xml 250 +MD5 95835999517d0b7ec05d023f64e381ed vimirc-0.8.5-r1.ebuild 966 +MD5 47960d80f1cbe9a5917462ca53048804 files/digest-vimirc-0.9.10 65 MD5 e2843db54bc9df5411c42873f79e7d4d files/digest-vimirc-0.8.11 65 MD5 0951d2c4f839b3d9dd1554bbb9bd6028 files/digest-vimirc-0.8.5-r1 64 diff --git a/app-vim/vimirc/files/digest-vimirc-0.9.10 b/app-vim/vimirc/files/digest-vimirc-0.9.10 new file mode 100644 index 000000000000..47a03b2007fe --- /dev/null +++ b/app-vim/vimirc/files/digest-vimirc-0.9.10 @@ -0,0 +1 @@ +MD5 9755fa35f121ababb3b5232902acb982 vimirc-0.9.10.tar.bz2 39233 diff --git a/app-vim/vimirc/vimirc-0.9.10.ebuild b/app-vim/vimirc/vimirc-0.9.10.ebuild new file mode 100644 index 000000000000..adc827e32689 --- /dev/null +++ b/app-vim/vimirc/vimirc-0.9.10.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/vimirc/vimirc-0.9.10.ebuild,v 1.1 2005/03/05 00:03:54 slarti Exp $ + +inherit vim-plugin + +DESCRIPTION="vim plugin: IRC Client" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=931" +LICENSE="vim" +KEYWORDS="~x86 ~sparc ~mips ~ppc ~amd64 ~alpha ~ia64" +IUSE="" + +VIM_PLUGIN_HELPFILES="vimirc.txt" + +# requires 6.2.412 at runtime. it's not too keen upon console vim, so we'll +# just ask for gvim. +RDEPEND=">=app-editors/gvim-6.2-r8" + +src_unpack() { + unpack ${A} + cd ${S} + # Documentation is supplied in the source file. + mkdir doc + sed -e '/^[^"]/,9999d' -e 's~^" \?~~' -e '1s/$/ *vimirc.txt*/' \ + plugin/vimirc.vim > doc/vimirc.txt +} + +pkg_postinst() { + vim-plugin_pkg_postinst + einfo " " + einfo "This plugin requires a Vim with perl support enabled. This is" + einfo "controlled by the 'perl' USE flag." + einfo " " +} |