From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0994C158041 for ; Fri, 22 Mar 2024 12:37:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 265CEE29D5; Fri, 22 Mar 2024 12:37:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 040CFE29D5 for ; Fri, 22 Mar 2024 12:37:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 41172335D60 for ; Fri, 22 Mar 2024 12:37:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE69A15A6 for ; Fri, 22 Mar 2024 12:37:17 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1711111027.22dfa65ffb31d77d500a3b8349dc5d71c21af5a2.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/editorconfig-vim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/editorconfig-vim/Manifest app-vim/editorconfig-vim/editorconfig-vim-1.2.0.ebuild X-VCS-Directories: app-vim/editorconfig-vim/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 22dfa65ffb31d77d500a3b8349dc5d71c21af5a2 X-VCS-Branch: master Date: Fri, 22 Mar 2024 12:37:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e1e433c4-8741-404b-b08a-e155bbf1bf1a X-Archives-Hash: d03f7961a49797d3cebb9073f51208c5 commit: 22dfa65ffb31d77d500a3b8349dc5d71c21af5a2 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Mar 22 12:28:30 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Mar 22 12:37:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22dfa65f app-vim/editorconfig-vim: add 1.2.0, EAPI=8 Signed-off-by: Arthur Zamarin gentoo.org> app-vim/editorconfig-vim/Manifest | 1 + .../editorconfig-vim/editorconfig-vim-1.2.0.ebuild | 26 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) 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 +}