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 538491396D0 for ; Thu, 17 Aug 2017 21:00:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B75591FC018; Thu, 17 Aug 2017 21:00:02 +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 976271FC018 for ; Thu, 17 Aug 2017 21:00:01 +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 921FF3418CD for ; Thu, 17 Aug 2017 21:00:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 521147946 for ; Thu, 17 Aug 2017 20:59:59 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1503003547.28480792f390d1ce411e7250c7adc447b34cc7c5.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/bufexplorer/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/bufexplorer/bufexplorer-9999.ebuild X-VCS-Directories: app-vim/bufexplorer/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 28480792f390d1ce411e7250c7adc447b34cc7c5 X-VCS-Branch: master Date: Thu, 17 Aug 2017 20:59:59 +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: 5ae6b296-81ce-4375-b992-db250edf4e23 X-Archives-Hash: 410e0cb9170f9b6e63fb9bd9542664a4 commit: 28480792f390d1ce411e7250c7adc447b34cc7c5 Author: Tim Harder gentoo org> AuthorDate: Thu Aug 17 20:59:07 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Thu Aug 17 20:59:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28480792 app-vim/bufexplorer: add live ebuild app-vim/bufexplorer/bufexplorer-9999.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/app-vim/bufexplorer/bufexplorer-9999.ebuild b/app-vim/bufexplorer/bufexplorer-9999.ebuild new file mode 100644 index 00000000000..cd3d232d76e --- /dev/null +++ b/app-vim/bufexplorer/bufexplorer-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vim-plugin + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/jlanzarotta/bufexplorer.git" + inherit git-r3 +else + SRC_URI="https://github.com/jlanzarotta/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="vim plugin: easily browse vim buffers" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=42 https://github.com/jlanzarotta/bufexplorer" +LICENSE="BSD" + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +src_prepare() { + default + rm LICENSE README.md || die +}