diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-08-20 23:11:38 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-08-20 23:11:38 +0000 |
commit | be0065a9d18cb44bcd402470cc97ac9ca6098cc6 (patch) | |
tree | faaa6a91626ef484298d2fb80a57bd3338c561f7 /app-vim/showmarks | |
parent | Version bump wrt bug #60844. Will stable after 24 hrs. (Manifest recommit) (diff) | |
download | gentoo-2-be0065a9d18cb44bcd402470cc97ac9ca6098cc6.tar.gz gentoo-2-be0065a9d18cb44bcd402470cc97ac9ca6098cc6.tar.bz2 gentoo-2-be0065a9d18cb44bcd402470cc97ac9ca6098cc6.zip |
Version bump
Diffstat (limited to 'app-vim/showmarks')
-rw-r--r-- | app-vim/showmarks/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/showmarks/Manifest | 12 | ||||
-rw-r--r-- | app-vim/showmarks/files/digest-showmarks-2.2 | 1 | ||||
-rw-r--r-- | app-vim/showmarks/showmarks-2.2.ebuild | 26 |
4 files changed, 35 insertions, 11 deletions
diff --git a/app-vim/showmarks/ChangeLog b/app-vim/showmarks/ChangeLog index 05ce15dafd4a..297a1a820c89 100644 --- a/app-vim/showmarks/ChangeLog +++ b/app-vim/showmarks/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/showmarks # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/showmarks/ChangeLog,v 1.11 2004/08/20 16:58:46 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/showmarks/ChangeLog,v 1.12 2004/08/20 23:11:38 ciaranm Exp $ + +*showmarks-2.2 (21 Aug 2004) + + 21 Aug 2004; Ciaran McCreesh <ciaranm@gentoo.org> +showmarks-2.2.ebuild: + Version bump 20 Aug 2004; Ciaran McCreesh <ciaranm@gentoo.org> showmarks-2.1.ebuild: Stable on x86 diff --git a/app-vim/showmarks/Manifest b/app-vim/showmarks/Manifest index dfefbd32e992..282f5b8dce56 100644 --- a/app-vim/showmarks/Manifest +++ b/app-vim/showmarks/Manifest @@ -1,16 +1,8 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 f21a6a56bd78c244fe01e7c1d795df17 ChangeLog 1266 +MD5 36092e512dd5ad8122b3f31a50cc7428 showmarks-2.2.ebuild 913 MD5 f3583430b2f7b0686cafd606b08bf203 metadata.xml 156 MD5 acb4378da95dba41731dcaf827ba31a0 showmarks-2.1.ebuild 443 MD5 514d697a187de03ff3c90d6ed6e8976a showmarks-2.0.ebuild 443 MD5 a1ce7406a6cf0c38992d163388cb0551 files/digest-showmarks-2.0 64 +MD5 0c524f8e4a0168752c8312233df9ea07 files/digest-showmarks-2.2 64 MD5 612e906708b1a1a679f493f93ffd1048 files/digest-showmarks-2.1 64 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.4 (GNU/Linux) - -iD8DBQFBJi0wLLFUmVNQ7rkRAnbzAJ44jbGmlWy6l94NuKVODczijQ4ouACgyxu6 -qq5ofbua4kWjiQIZ+PrmlnU= -=hXtx ------END PGP SIGNATURE----- diff --git a/app-vim/showmarks/files/digest-showmarks-2.2 b/app-vim/showmarks/files/digest-showmarks-2.2 new file mode 100644 index 000000000000..610fc08684cc --- /dev/null +++ b/app-vim/showmarks/files/digest-showmarks-2.2 @@ -0,0 +1 @@ +MD5 9acc3e36bbafa1c391378de4f96ecca3 showmarks-2.2.tar.bz2 8195 diff --git a/app-vim/showmarks/showmarks-2.2.ebuild b/app-vim/showmarks/showmarks-2.2.ebuild new file mode 100644 index 000000000000..86750db452bc --- /dev/null +++ b/app-vim/showmarks/showmarks-2.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/showmarks/showmarks-2.2.ebuild,v 1.1 2004/08/20 23:11:38 ciaranm Exp $ + +inherit vim-plugin + +DESCRIPTION="vim plugin: show location marks visually" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=152" + +LICENSE="public-domain" +KEYWORDS="~alpha ~sparc ~x86 ~ia64 ~ppc ~amd64 ~mips" +IUSE="" + +function src_unpack() { + unpack ${A} + mkdir ${S}/doc || die "can't make doc dir" + + # This plugin uses an 'automatic HelpExtractor' variant. This causes + # problems for us during the unmerge. Fortunately, sed can fix this + # for us. + sed -e '1,/^" HelpExtractorDoc:$/d' \ + ${S}/plugin/showmarks.vim > ${S}/doc/showmarks.txt \ + || die "help extraction failed" + sed -i -e '/^" HelpExtractor:$/,$d' ${S}/plugin/showmarks.vim \ + || die "help extract remove failed" +} |