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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 254D615806E for ; Sat, 3 Jun 2023 13:39:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5812CE087A; Sat, 3 Jun 2023 13:39:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35946E087A for ; Sat, 3 Jun 2023 13:39:52 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 004043410AA for ; Sat, 3 Jun 2023 13:39:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35EA88DC for ; Sat, 3 Jun 2023 13:39:49 +0000 (UTC) From: "Adrian Schollmeyer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Adrian Schollmeyer" Message-ID: <1685799563.ae6c713a4bf0b1a521549b02c48008d8a7b91e3a.nex+b-g-o@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-vim/ansible-vim/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-vim/ansible-vim/Manifest app-vim/ansible-vim/ansible-vim-3.3.ebuild X-VCS-Directories: app-vim/ansible-vim/ X-VCS-Committer: nex+b-g-o X-VCS-Committer-Name: Adrian Schollmeyer X-VCS-Revision: ae6c713a4bf0b1a521549b02c48008d8a7b91e3a X-VCS-Branch: dev Date: Sat, 3 Jun 2023 13:39:49 +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: c344a137-6363-4ce8-b12a-d5551a3c375a X-Archives-Hash: a43fbfafa98fc5b397a6e65758569fc2 commit: ae6c713a4bf0b1a521549b02c48008d8a7b91e3a Author: Adrian Schollmeyer nexadn de> AuthorDate: Sat Jun 3 13:38:24 2023 +0000 Commit: Adrian Schollmeyer nexadn de> CommitDate: Sat Jun 3 13:39:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ae6c713a app-vim/ansible-vim: add 3.3 Signed-off-by: Adrian Schollmeyer nexadn.de> app-vim/ansible-vim/Manifest | 1 + app-vim/ansible-vim/ansible-vim-3.3.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/app-vim/ansible-vim/Manifest b/app-vim/ansible-vim/Manifest index 4a86b00a6..b5140fea7 100644 --- a/app-vim/ansible-vim/Manifest +++ b/app-vim/ansible-vim/Manifest @@ -1 +1,2 @@ DIST ansible-vim-3.2.tar.gz 12116 BLAKE2B e532b348216f3616060b9e09d177d601534c37eda1305512309954e0480e2827bd6f2d40564151104184a389c495b2442264f34d5b8031a1023ddd093cdd1be6 SHA512 a75e8b149befb001fdb0012ea8219287a6b4c302e2ae2de456835c48e3a516bb99bfb91a21e2d60eff12b5a24d918510dd9302d93e0bf43cb42f025ea0504d1b +DIST ansible-vim-3.3.tar.gz 12887 BLAKE2B 036cfdbdefb7d4992700476556a2805a3bc9cfba9e98d793eea7526fc2587a23ed34e64cfc141a54d9f435e957db7315b6549190de7dde3b619fe4360af238bb SHA512 7848e91ebf43d9581773436eca4310c5a26f743f2384d9cfc2e430a7b84fd945c4cd65aeb54947c47e3903e1fccb275d94bcfa22f6660e3438cc9785c38ca10f diff --git a/app-vim/ansible-vim/ansible-vim-3.3.ebuild b/app-vim/ansible-vim/ansible-vim-3.3.ebuild new file mode 100644 index 000000000..922948793 --- /dev/null +++ b/app-vim/ansible-vim/ansible-vim-3.3.ebuild @@ -0,0 +1,20 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +VIM_PLUGIN_VIM_VERSION="7.0" +inherit vim-plugin + +DESCRIPTION="vim plugin: sytax highlighting for Ansible's common file types" +HOMEPAGE="https://github.com/pearofducks/ansible-vim" +SRC_URI="https://github.com/pearofducks/ansible-vim/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT BSD" +KEYWORDS="~amd64" + +src_install() { + vim-plugin_src_install + + find "${ED}" -name "*LICENSE" -delete || die +}