diff options
author | 2024-03-22 14:28:30 +0200 | |
---|---|---|
committer | 2024-03-22 14:37:07 +0200 | |
commit | 22dfa65ffb31d77d500a3b8349dc5d71c21af5a2 (patch) | |
tree | 1fab9f858f29cff757d51155eea25e779b0dfb80 /app-vim/editorconfig-vim | |
parent | app-emulation/wine-proton: reword USE=wow64 again (diff) | |
download | gentoo-22dfa65ffb31d77d500a3b8349dc5d71c21af5a2.tar.gz gentoo-22dfa65ffb31d77d500a3b8349dc5d71c21af5a2.tar.bz2 gentoo-22dfa65ffb31d77d500a3b8349dc5d71c21af5a2.zip |
app-vim/editorconfig-vim: add 1.2.0, EAPI=8
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-vim/editorconfig-vim')
-rw-r--r-- | app-vim/editorconfig-vim/Manifest | 1 | ||||
-rw-r--r-- | app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/app-vim/editorconfig-vim/Manifest b/app-vim/editorconfig-vim/Manifest index f06ac84b76cc..7926ab38bc4a 100644 --- a/app-vim/editorconfig-vim/Manifest +++ b/app-vim/editorconfig-vim/Manifest @@ -1 +1,2 @@ DIST editorconfig-vim-1.1.1.tar.gz 33287 BLAKE2B 4c79ac3bf1f82ca6182480ab2f3c2ee24b8234f5845c63d90434bb57271981554a0651d8bc0314c718ad9700adf7903fed45f5e400d8ae8a0b6d42932e89e071 SHA512 7b94db4b2f641ecd2d2623bf55bf9b457c007b2b5c8553cba5b7a75bc34823d6995d3c9ed13febe0f59de6f87c52eb0367591213c43c6fcd7c331c529126f4d6 +DIST editorconfig-vim-1.2.0.tar.gz 34457 BLAKE2B 969e650c69abaa4e7fb652f3384f2b4ac779e2d6d3f39d898bcc7e69c7399510bfabb1aae5bd90cbb2e5276f5200a87797f6da976df040e39626d883b907792c SHA512 1101562e71f2a9f356a3773cc32f4f091d5a0b67c85a8d78d70f76a73ec3b709f5ac5b7db7448972409031d37176190922912945be05037b627d1cf766bbb731 diff --git a/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild b/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild new file mode 100644 index 000000000000..d221e6bb7636 --- /dev/null +++ b/app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit vim-plugin + +MY_PV="${PV//_/-}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="vim plugin: Support EditorConfig files" +HOMEPAGE="https://editorconfig.org/" +SRC_URI="https://github.com/${PN%-vim}/${PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD-2 PSF-2" +KEYWORDS="~amd64 ~arm64 ~x86" + +VIM_PLUGIN_HELPFILES="${PN%-vim}.txt" + +src_install() { + # we don't want to install the tests + rm -r tests || die + + vim-plugin_src_install +} |