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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 193A0158CB7 for ; Tue, 17 Aug 2021 21:32:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60C44E0874; Tue, 17 Aug 2021 21:32:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47AC0E0871 for ; Tue, 17 Aug 2021 21:32:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 876813408DD for ; Tue, 17 Aug 2021 21:32:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 943538C2 for ; Tue, 17 Aug 2021 21:32:33 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1629235884.0463384404d162a18be0b294c37ea60cd8b44f20.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-vim/tex-conceal/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-vim/tex-conceal/Manifest app-vim/tex-conceal/metadata.xml app-vim/tex-conceal/tex-conceal-20210409.ebuild X-VCS-Directories: app-vim/tex-conceal/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 0463384404d162a18be0b294c37ea60cd8b44f20 X-VCS-Branch: dev Date: Tue, 17 Aug 2021 21:32:33 +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: f3b1e5ae-0548-47b8-88bf-942f94410cba X-Archives-Hash: 7dade004b7268262b84e9b6e96bfda53 commit: 0463384404d162a18be0b294c37ea60cd8b44f20 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Tue Aug 17 21:31:24 2021 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Tue Aug 17 21:31:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=04633844 app-vim/tex-conceal: initial import Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> app-vim/tex-conceal/Manifest | 1 + app-vim/tex-conceal/metadata.xml | 8 ++++++++ app-vim/tex-conceal/tex-conceal-20210409.ebuild | 25 +++++++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/app-vim/tex-conceal/Manifest b/app-vim/tex-conceal/Manifest new file mode 100644 index 000000000..1b3807e28 --- /dev/null +++ b/app-vim/tex-conceal/Manifest @@ -0,0 +1 @@ +DIST tex-conceal-20210409.tar.gz 1104236 BLAKE2B 8a31f0e2de9b10d4c759d937e2bdf347772c49c9aef8148b58cd32a8f6ee2bb420f41dd853d80df0c0294b092019ddcc649a1ec379819db901da5288905e1720 SHA512 07f15a5afbe6a9fa018022f3f24d3d14909ebfb2268c32309fd7992363438e10a86f2e569a55f25eeeda835d2ea123a9591724f2ff0263216a1fa551f4e29aeb diff --git a/app-vim/tex-conceal/metadata.xml b/app-vim/tex-conceal/metadata.xml new file mode 100644 index 000000000..c8b0192e7 --- /dev/null +++ b/app-vim/tex-conceal/metadata.xml @@ -0,0 +1,8 @@ + + + + + cyber+gentoo@sysrq.in + Anna + + diff --git a/app-vim/tex-conceal/tex-conceal-20210409.ebuild b/app-vim/tex-conceal/tex-conceal-20210409.ebuild new file mode 100644 index 000000000..cacec8205 --- /dev/null +++ b/app-vim/tex-conceal/tex-conceal-20210409.ebuild @@ -0,0 +1,25 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit vim-plugin + +COMMIT="822712d80b4ad5bc5c241ab0a778ede812ec501f" +DESCRIPTION="vim plugin: extends the Conceal feature for LaTeX" +HOMEPAGE="https://github.com/KeitaNakamura/tex-conceal.vim" +SRC_URI="https://github.com/KeitaNakamura/${PN}.vim/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}.vim-${COMMIT}" + +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" + +src_prepare() { + default + rm -r test || die + + # avoid collision with app-vim/vimtex + cd after/syntax || die + mkdir tex || die + mv tex.vim tex/${PN}.vim +}