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 55CB01586A6 for ; Tue, 17 Aug 2021 21:32:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54B01E086C; Tue, 17 Aug 2021 21:32:36 +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 37643E0863 for ; Tue, 17 Aug 2021 21:32:36 +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 C72683408F0 for ; Tue, 17 Aug 2021 21:32:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59CCB8B3 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: <1629233492.35259218d956ce88a0bb4d8a6bd472e6ed862cfa.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-vim/themis/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-vim/themis/Manifest app-vim/themis/metadata.xml app-vim/themis/themis-1.5.5.ebuild X-VCS-Directories: app-vim/themis/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 35259218d956ce88a0bb4d8a6bd472e6ed862cfa 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: ede7cfbb-59ba-45ad-9361-9e0129b40c39 X-Archives-Hash: 71681060b41b8f8b3407d888370c4346 commit: 35259218d956ce88a0bb4d8a6bd472e6ed862cfa Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Tue Aug 17 20:15:21 2021 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Tue Aug 17 20:51:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=35259218 app-vim/themis: initial import Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> app-vim/themis/Manifest | 1 + app-vim/themis/metadata.xml | 8 ++++++++ app-vim/themis/themis-1.5.5.ebuild | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/app-vim/themis/Manifest b/app-vim/themis/Manifest new file mode 100644 index 000000000..d7ceef8ae --- /dev/null +++ b/app-vim/themis/Manifest @@ -0,0 +1 @@ +DIST themis-1.5.5.tar.gz 54661 BLAKE2B bcd04d5134095c37369188b4e656ac8372a4d5acf351fb5748bb0ec027b2db4f32d26c68018b0691963df400f34ef7b4a39ca84f9400609313b5f61afef6869b SHA512 fc9169215a2213c42db7eb0548dd637ebf06c42ba287a980fa561e8c0f4dea3eee9f4b10c811d4dfebeeacb4bce1aea0d10872eff05b19316d3d4e9774fe6b32 diff --git a/app-vim/themis/metadata.xml b/app-vim/themis/metadata.xml new file mode 100644 index 000000000..c8b0192e7 --- /dev/null +++ b/app-vim/themis/metadata.xml @@ -0,0 +1,8 @@ + + + + + cyber+gentoo@sysrq.in + Anna + + diff --git a/app-vim/themis/themis-1.5.5.ebuild b/app-vim/themis/themis-1.5.5.ebuild new file mode 100644 index 000000000..b658992ba --- /dev/null +++ b/app-vim/themis/themis-1.5.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit vim-plugin + +DESCRIPTION="A testing framework for Vim script" +HOMEPAGE="https://github.com/thinca/vim-themis" +SRC_URI="https://github.com/thinca/vim-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/vim-${P}" + +LICENSE="ZLIB" +KEYWORDS="~amd64 ~x86" + +VIM_PLUGIN_HELPFILES="themis" + +src_prepare() { + default + +} + +src_test() { + bash ./bin/themis || die +} + +src_install() { + rm -r examples test || die + vim-plugin_src_install + + dosym -r /usr/share/vim/vimfiles/bin/themis /usr/bin/themis + fperms +x /usr/share/vim/vimfiles/bin/themis +}