app-vim/visual-multi: Remove the old version

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
This commit is contained in:
Nils Freydank 2021-06-19 20:56:52 +02:00
parent 6d9f463391
commit f0b0b2d645
No known key found for this signature in database
GPG Key ID: BC5DC2998AAD2B21
2 changed files with 0 additions and 41 deletions

View File

@ -1,2 +1 @@
DIST visual-multi-0.5.8_p20210527.tar.gz 93291 BLAKE2B ed52d27aa9fff7f5cee2dd0b42f3999de7cfe33e3c40286dd0ec4ac0b6bfce2f4b7d2399de3ce87e54386d2450379a84e73696db1d3d91f695e15679e988b24f SHA512 180e632da6c8761a41cf3aa5a6efe771c5abe8398974b3cfaa60d3ed67aff1a7418fc5056ac9036fd5b001ede8e8ea07647d2596245a5488bedd5552cb895c5c
DIST visual-multi-0.5.8_p20210611.tar.gz 93836 BLAKE2B 321ffe637b3d8a58261feb4da466cc363cffe3f045b635c1e0cefd1e99d9bf6ac40d3b26d9b23dde49d323fd4b5749e1e302b33dec57016f5757722a39d99726 SHA512 02338dcf6c8f30c4967a51fa8faf628ed517bb7c331f5ad09c6bdf834af0b670f01d079e374cd26b07acb4d2bc20a999eb1e10bcd83a152331bde43c81952c13 DIST visual-multi-0.5.8_p20210611.tar.gz 93836 BLAKE2B 321ffe637b3d8a58261feb4da466cc363cffe3f045b635c1e0cefd1e99d9bf6ac40d3b26d9b23dde49d323fd4b5749e1e302b33dec57016f5757722a39d99726 SHA512 02338dcf6c8f30c4967a51fa8faf628ed517bb7c331f5ad09c6bdf834af0b670f01d079e374cd26b07acb4d2bc20a999eb1e10bcd83a152331bde43c81952c13

View File

@ -1,40 +0,0 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit vim-plugin
COMMIT_ID="8041a909fc3f740e9d110dd2e95980ff4645785b"
DESCRIPTION="vim plugin: Multiple cursors plugin for vim/neovim"
HOMEPAGE="https://github.com/mg979/vim-visual-multi"
LICENSE="MIT"
IUSE="test"
RESTRICT="!test? ( test )"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/mg979/vim-visual-multi.git"
else
if [[ ${PV} == *_p* ]]; then
SRC_URI="https://github.com/mg979/vim-${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/vim-${PN}-${COMMIT_ID}"
KEYWORDS="~amd64 ~x86"
else
SRC_URI="https://github.com/tpope/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/vim-${P}"
KEYWORDS="~amd64 ~x86"
fi
fi
DOCS=( README.md )
pkg_postinst(){
if [[ -z "${REPLACING_VERSIONS}" ]]; then
# ^this is a new installation, so:
elog ""
elog "To start the visual-mode tutorial, run:"
elog "vim -Nu /usr/share/vim/vimfiles/doc/vm-tutorial"
fi
}