app-vim/visual-multi: Add new package version 0.5.8_p20210513

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
This commit is contained in:
Nils Freydank 2021-05-21 14:13:42 +02:00
parent 27dbfcf67f
commit 9c57ce0683
No known key found for this signature in database
GPG Key ID: BC5DC2998AAD2B21
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST visual-multi-0.5.8_p20210513.tar.gz 93259 BLAKE2B 3fb716445c846925fee9b4b48d857e0f1f45fb44ab4cae16737879f38a05d5dff04363a86b8c8242f5f4cd15522661fc2e4ca1c182a0d11d6e96ffc7df555f6e SHA512 a0a4112cbb6c4c41da036ff9df020bbc502a161e529143c9d4539eb517fc544dbed40b54bfb128a52f4e79c3e016da2894af42a490d0350c35f0c010a4274769

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>holgersson@posteo.de</email>
<name>Nils Freydank</name>
</maintainer>
<upstream>
<remote-id type="github">tpope/vim-obsession</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,40 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit vim-plugin
COMMIT_ID="17fed1b0471e224c59b9ae1b8a3cbeea570dd14b"
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
}