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 D50141581C1 for ; Fri, 12 Jul 2024 20:50:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2684DE2A2C; Fri, 12 Jul 2024 20:50:28 +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 010A4E2A2C for ; Fri, 12 Jul 2024 20:50:27 +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 D95BC343076 for ; Fri, 12 Jul 2024 20:50:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46FC51BFE for ; Fri, 12 Jul 2024 20:50:25 +0000 (UTC) From: "Hendrik Klug" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hendrik Klug" Message-ID: <1720817271.513afbb69226fd2533751e36a9ba22f5aa481ecf.hendrik.klug@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-vim/rainbow_csv/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-vim/rainbow_csv/Manifest app-vim/rainbow_csv/rainbow_csv-1.10.0_pre20240705.ebuild X-VCS-Directories: app-vim/rainbow_csv/ X-VCS-Committer: hendrik.klug X-VCS-Committer-Name: Hendrik Klug X-VCS-Revision: 513afbb69226fd2533751e36a9ba22f5aa481ecf X-VCS-Branch: dev Date: Fri, 12 Jul 2024 20:50:25 +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: 36bd7ac2-06d5-4d4a-b0e8-c000a0304c60 X-Archives-Hash: d92a62928e19b20142dc55718493dc32 commit: 513afbb69226fd2533751e36a9ba22f5aa481ecf Author: Hendrik Klug gmail com> AuthorDate: Fri Jul 12 20:47:51 2024 +0000 Commit: Hendrik Klug gmail com> CommitDate: Fri Jul 12 20:47:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=513afbb6 app-vim/rainbow_csv: add 1.10.0_pre20240705 Signed-off-by: Hendrik Klug gmail.com> app-vim/rainbow_csv/Manifest | 1 + .../rainbow_csv-1.10.0_pre20240705.ebuild | 26 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-vim/rainbow_csv/Manifest b/app-vim/rainbow_csv/Manifest new file mode 100644 index 000000000..d48c56aa5 --- /dev/null +++ b/app-vim/rainbow_csv/Manifest @@ -0,0 +1 @@ +DIST rainbow_csv-3dbbfd7d17536aebfb80f571255548495574c32b.tar.gz 222389 BLAKE2B 090dd5fa6e426f10df4fb94bf9c47bba614cb51ae14f98e169441f6387ada5814f36cb8cd1b735b3699b54559a2d313b7a2e265c256e0c0df631bc8f280b5566 SHA512 ba6a02c85fed5f7fdc7e6fdea53ad2edf69d985e2b0873a38592f6610b618a7576d47b8e609f2f0b8ef1c3cb735e8ce2afebc595db404eecbbf0f3e153ee221d diff --git a/app-vim/rainbow_csv/rainbow_csv-1.10.0_pre20240705.ebuild b/app-vim/rainbow_csv/rainbow_csv-1.10.0_pre20240705.ebuild new file mode 100644 index 000000000..9af59c05e --- /dev/null +++ b/app-vim/rainbow_csv/rainbow_csv-1.10.0_pre20240705.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 + +DESCRIPTION="🌈Rainbow CSV - Vim plugin: Highlight columns in CSV and TSV files and run queries in SQL-like language" +HOMEPAGE="https://github.com/mechatroner/rainbow_csv" + +EGIT_COMMIT="3dbbfd7d17536aebfb80f571255548495574c32b" +MY_P="${PN}-${EGIT_COMMIT}" +SRC_URI="https://github.com/mechatroner/rainbow_csv/archive/${EGIT_COMMIT}.tar.gz -> ${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + app-editors/vim +" + +src_install() { + vim-plugin_src_install +}