mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
52 lines
908 B
Bash
52 lines
908 B
Bash
# Copyright 2022-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit vim-plugin
|
|
|
|
MY_PN="${PN}.vim"
|
|
COMMIT="2b6950c7143790e6930b8cf32d60c6858a50d47c"
|
|
DESCRIPTION="vim plugin: Yet Another TypeScript Syntax"
|
|
HOMEPAGE="https://github.com/HerringtonDarkholme/yats.vim"
|
|
SRC_URI="https://github.com/HerringtonDarkholme/${MY_PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${MY_PN}-${COMMIT}"
|
|
|
|
LICENSE="vim"
|
|
KEYWORDS="~amd64"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND="
|
|
test? (
|
|
${RDEPEND}
|
|
>app-vim/vader-0.3.0
|
|
)
|
|
"
|
|
|
|
DOCS=( CHANGES.markdown README.md )
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# failing tests
|
|
rm test/tsx.indent.vader || die
|
|
}
|
|
|
|
src_compile() {
|
|
:
|
|
}
|
|
|
|
src_test() {
|
|
cd test || die
|
|
|
|
unset DISPLAY
|
|
local -x TERM="xterm"
|
|
|
|
vim -eu "${FILESDIR}"/vimrc -c "Vader! ./*.vader" || die
|
|
}
|
|
|
|
src_install() {
|
|
vim-plugin_src_install ctags UltiSnips
|
|
}
|