Install this version:
emerge -a =app-vim/vader-0.3.0
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-vim/vader-0.3.0
Or alternatively:
emerge --autounmask-write -a =app-vim/vader-0.3.0
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.3.0 | 8 | ~amd64 |
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit vim-plugin
MY_PN="${PN}.vim"
DESCRIPTION="A simple Vimscript test framework"
HOMEPAGE="https://github.com/junegunn/vader.vim"
SRC_URI="https://github.com/junegunn/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
KEYWORDS="~amd64"
VIM_PLUGIN_HELPFILES="vader"
DOCS=( example )
src_install() {
vim-plugin_src_install
# make an isolated environment for running tests
insinto /usr/share/${PN}
doins -r autoload doc ftdetect ftplugin plugin syntax
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | vader-0.3.0.tar.gz | 12216 bytes | https://github.com/junegunn/vader.vim/archive/refs/tags/0.3.0.tar.gz |