From 28e276c0498374e49abf438295d3371987fc9d3e Mon Sep 17 00:00:00 2001 From: "Anna (cybertailor) Vyalkova" Date: Sat, 29 Oct 2022 06:07:32 +0500 Subject: app-vim/vader: new package, add 0.3.0 Signed-off-by: Anna (cybertailor) Vyalkova --- app-vim/vader/Manifest | 2 ++ app-vim/vader/metadata.xml | 11 +++++++++++ app-vim/vader/vader-0.3.0.ebuild | 27 +++++++++++++++++++++++++++ app-vim/vader/vader-0.3.0_p20200213.ebuild | 26 ++++++++++++++++++++++++++ 4 files changed, 66 insertions(+) create mode 100644 app-vim/vader/Manifest create mode 100644 app-vim/vader/metadata.xml create mode 100644 app-vim/vader/vader-0.3.0.ebuild create mode 100644 app-vim/vader/vader-0.3.0_p20200213.ebuild (limited to 'app-vim') diff --git a/app-vim/vader/Manifest b/app-vim/vader/Manifest new file mode 100644 index 000000000..f2575d511 --- /dev/null +++ b/app-vim/vader/Manifest @@ -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 diff --git a/app-vim/vader/metadata.xml b/app-vim/vader/metadata.xml new file mode 100644 index 000000000..c105de953 --- /dev/null +++ b/app-vim/vader/metadata.xml @@ -0,0 +1,11 @@ + + + + + cyber+gentoo@sysrq.in + Anna + + + junegunn/vader.vim + + diff --git a/app-vim/vader/vader-0.3.0.ebuild b/app-vim/vader/vader-0.3.0.ebuild new file mode 100644 index 000000000..8ed581487 --- /dev/null +++ b/app-vim/vader/vader-0.3.0.ebuild @@ -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 +} diff --git a/app-vim/vader/vader-0.3.0_p20200213.ebuild b/app-vim/vader/vader-0.3.0_p20200213.ebuild new file mode 100644 index 000000000..f28638dc8 --- /dev/null +++ b/app-vim/vader/vader-0.3.0_p20200213.ebuild @@ -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 +} -- cgit v1.2.3-65-gdbad