diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-09-07 01:03:13 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-09-07 01:03:13 +0000 |
commit | 6635a1d7b946c73d4fcfb226600fdebcb020d46a (patch) | |
tree | 578b7d78ad5ea272c32a4d44810122db52612d45 /app-vim | |
parent | repoman: trim trailing whitespace (diff) | |
download | gentoo-2-6635a1d7b946c73d4fcfb226600fdebcb020d46a.tar.gz gentoo-2-6635a1d7b946c73d4fcfb226600fdebcb020d46a.tar.bz2 gentoo-2-6635a1d7b946c73d4fcfb226600fdebcb020d46a.zip |
bump to 2.8 for bug 28083
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/taglist/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/taglist/Manifest | 4 | ||||
-rw-r--r-- | app-vim/taglist/files/digest-taglist-2.8 | 1 | ||||
-rw-r--r-- | app-vim/taglist/taglist-2.8.ebuild | 20 |
4 files changed, 29 insertions, 3 deletions
diff --git a/app-vim/taglist/ChangeLog b/app-vim/taglist/ChangeLog index 1b93fa690be8..0626b8e5d99d 100644 --- a/app-vim/taglist/ChangeLog +++ b/app-vim/taglist/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/taglist # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/taglist/ChangeLog,v 1.4 2003/09/03 22:40:16 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/taglist/ChangeLog,v 1.5 2003/09/07 01:03:02 agriffis Exp $ + +*taglist-2.8 (06 Sep 2003) + + 06 Sep 2003; Aron Griffis <agriffis@gentoo.org> taglist-2.8.ebuild: + Version bump to 2.8. Thanks to Ciaran McCreesh who pointed it out in bug 28083 03 Sep 2003; Jason Wever <weeve@gentoo.org> taglist-2.6-r1.ebuild, taglist-2.6.ebuild: diff --git a/app-vim/taglist/Manifest b/app-vim/taglist/Manifest index 30a4853ba41a..f485280b6e31 100644 --- a/app-vim/taglist/Manifest +++ b/app-vim/taglist/Manifest @@ -1,8 +1,8 @@ MD5 079a839c97860b9a87ae31eeda295bfa taglist-2.6-r1.ebuild 556 MD5 b5894c1f0058764dfa5c72754a8323d3 taglist-2.6.ebuild 437 -MD5 6ea4013a2de2cb2904b12ec5d795e880 ChangeLog 1009 +MD5 8fb1f6b423b0e43d71d87365cfccaccd ChangeLog 1193 MD5 f3583430b2f7b0686cafd606b08bf203 metadata.xml 156 -MD5 079a839c97860b9a87ae31eeda295bfa taglist-2.8.ebuild 556 +MD5 eb8499d97d2e458b408a91884d795ae0 taglist-2.8.ebuild 587 MD5 8d964b3af8b95753a6d3cf9f8a493818 files/digest-taglist-2.6 63 MD5 6586970409b1eab9c015d8e0178d111d files/digest-taglist-2.8 63 MD5 8d964b3af8b95753a6d3cf9f8a493818 files/digest-taglist-2.6-r1 63 diff --git a/app-vim/taglist/files/digest-taglist-2.8 b/app-vim/taglist/files/digest-taglist-2.8 new file mode 100644 index 000000000000..f1f9b9498686 --- /dev/null +++ b/app-vim/taglist/files/digest-taglist-2.8 @@ -0,0 +1 @@ +MD5 7b7f50cc3ec6a8f9cbdd6c524ec8b3f0 taglist-2.8.tar.bz2 15639 diff --git a/app-vim/taglist/taglist-2.8.ebuild b/app-vim/taglist/taglist-2.8.ebuild new file mode 100644 index 000000000000..ccc688c3d104 --- /dev/null +++ b/app-vim/taglist/taglist-2.8.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/taglist/taglist-2.8.ebuild,v 1.1 2003/09/07 01:03:02 agriffis Exp $ + +inherit vim-plugin eutils + +DESCRIPTION="vim plugin: ctags-based source code browser" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=273" + +LICENSE="vim" +KEYWORDS="x86 alpha ~sparc" + +RDEPEND="dev-util/ctags" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/taglist-2.6-exuberant.patch || die "epatch failed" + rm -f plugin/taglist.vim.orig +} |