app-vim/vader: new package, add 0.3.0

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2022-10-29 06:07:32 +05:00
parent 2a528973b8
commit 28e276c049
4 changed files with 66 additions and 0 deletions

2
app-vim/vader/Manifest Normal file
View File

@@ -0,0 +1,2 @@
DIST vader-0.3.0.tar.gz 12216 BLAKE2B 54ed462c08a3f0c3383ec5c8b0dea6bb583e558b7b554df14b20a3aa40cfbe03b535c05d3d9689dc89ba403aa9b667e1af1962d389c07b2e8dc6af700fba1aa9 SHA512 c9f157ca11a2c6270c85540c6c9aad493d6e4cbe0ee818bee7bd11909026a7682c95eeb4ae944ffa9e4f4beeb170ee8fd08a272e64a97de9fccd5b120f5a6c13
DIST vader-0.3.0_p20200213.tar.gz 17056 BLAKE2B 36947fd38b490ff5b9b87387481d708f87c6301db7359595384630fe2c2236a19c3b44bd3655ff79c4e05fba70640b74b5919ff0de6dd3205ccd6cc2e44b3a76 SHA512 f20a54b141c7d5a9fa21168e7ccd9ecf9d97c5d320415f01ddd9d8d0fb6e8efe3b0f0cc933eac149168d7a0af34bddc86d68bb3002fd5b274fb635b8afcdbba4

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>cyber+gentoo@sysrq.in</email>
<name>Anna</name>
</maintainer>
<upstream>
<remote-id type="github">junegunn/vader.vim</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,27 @@
# 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
}

View File

@@ -0,0 +1,26 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit vim-plugin
MY_PN="${PN}.vim"
COMMIT="b0f26cab7b6f630c8645d418935b698c5d3cd6ed"
DESCRIPTION="A simple Vimscript test framework"
HOMEPAGE="https://github.com/junegunn/vader.vim"
SRC_URI="https://github.com/junegunn/${MY_PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${COMMIT}"
LICENSE="MIT"
KEYWORDS="~amd64"
VIM_PLUGIN_HELPFILES="vader"
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
}