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 160A3138334 for ; Thu, 9 Aug 2018 21:56:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C95B3E09A1; Thu, 9 Aug 2018 21:56:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 9CCF1E09A1 for ; Thu, 9 Aug 2018 21:56:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 071FB335C9F for ; Thu, 9 Aug 2018 21:56:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5649380 for ; Thu, 9 Aug 2018 21:56:18 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1533851771.9a97c4b560feca20c3e1ef403fba9b8902100840.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/tlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/tlib/Manifest app-vim/tlib/tlib-1.22.ebuild X-VCS-Directories: app-vim/tlib/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 9a97c4b560feca20c3e1ef403fba9b8902100840 X-VCS-Branch: master Date: Thu, 9 Aug 2018 21:56:18 +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-Archives-Salt: 4dd6120c-82c6-48b4-8cf4-fc0c3e0e7ae2 X-Archives-Hash: 940cdfdb25dbc5a3f621af9269d6f6d2 commit: 9a97c4b560feca20c3e1ef403fba9b8902100840 Author: Patrice Clement gentoo org> AuthorDate: Wed Aug 8 08:22:54 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Aug 9 21:56:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a97c4b5 app-vim/tlib: version bump. Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-vim/tlib/Manifest | 1 + app-vim/tlib/tlib-1.22.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/app-vim/tlib/Manifest b/app-vim/tlib/Manifest index 60080ae08b8..e9d40970137 100644 --- a/app-vim/tlib/Manifest +++ b/app-vim/tlib/Manifest @@ -1 +1,2 @@ DIST tlib-1.20.tar.gz 111202 BLAKE2B 0ee6c662e1658607706516adab9b770942ec948633a75879b5a516b46989a34744acde52d10d5b2ea58af6e7215f1241b18c53267d643d4c2e08da425a93169e SHA512 d8a344483da2a174324dc81472b5d3bdb811e54af22a1599c5567019d33bafdf499845d3efeabf081ecf17dc6965c69640a6a01b208811529e86266ba1871218 +DIST tlib-1.22.tar.gz 119979 BLAKE2B 2fe1231b6a075989c41aa2cf38d0964b6d9ada390d0729ea417aa1c2ef1a105a07d569f80c75ba91a55f7e68f349faab2dcda66741b0b1da59f76d68a5467e24 SHA512 b7fc7e3741876c92bbccc116d4e170663e3d178aa8fb546f969475723cd82e07d9470af37574f8f97cfd23b8ca8f5dd5daa2e7bef50e2f62beec0015a2355908 diff --git a/app-vim/tlib/tlib-1.22.ebuild b/app-vim/tlib/tlib-1.22.ebuild new file mode 100644 index 00000000000..3b7985db27c --- /dev/null +++ b/app-vim/tlib/tlib-1.22.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vim-plugin + +MY_PN=${PN}_vim +MY_P=${MY_PN}-${PV} + +DESCRIPTION="vim plugin: a library of utility functions" +HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1863 https://github.com/tomtom/tlib_vim" +SRC_URI="https://github.com/tomtom/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="GPL-3" +KEYWORDS="~amd64 ~x86" + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + default + rm -r test samples addon-info.json || die +}