From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D3E481381F3 for ; Fri, 13 Sep 2013 17:27:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEFB9E0AEB; Fri, 13 Sep 2013 17:27:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5415BE0AEB for ; Fri, 13 Sep 2013 17:27:00 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 595D733BDD7 for ; Fri, 13 Sep 2013 17:26:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 08734E468F for ; Fri, 13 Sep 2013 17:26:58 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1379093183.9f3f73370f19f74cca2776ba79597a6ad8091bbd.chutzpah@gentoo> Subject: [gentoo-commits] dev/chutzpah:master commit in: app-vim/fugitive/ X-VCS-Repository: dev/chutzpah X-VCS-Files: app-vim/fugitive/Manifest app-vim/fugitive/fugitive-9999.ebuild X-VCS-Directories: app-vim/fugitive/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 9f3f73370f19f74cca2776ba79597a6ad8091bbd X-VCS-Branch: master Date: Fri, 13 Sep 2013 17:26:58 +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: b1c57fb5-fde2-4a67-81e6-fb900e6f2c66 X-Archives-Hash: 198e0cc777377ecf063fa71b3e47b0db commit: 9f3f73370f19f74cca2776ba79597a6ad8091bbd Author: Patrick McLean gentoo org> AuthorDate: Fri Sep 13 17:26:23 2013 +0000 Commit: Patrick McLean gentoo org> CommitDate: Fri Sep 13 17:26:23 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/chutzpah.git;a=commit;h=9f3f7337 Add a 9999 ebuild for app-vim/fugitive to my overlay --- app-vim/fugitive/Manifest | 1 + app-vim/fugitive/fugitive-9999.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-vim/fugitive/Manifest b/app-vim/fugitive/Manifest new file mode 100644 index 0000000..2300978 --- /dev/null +++ b/app-vim/fugitive/Manifest @@ -0,0 +1 @@ +EBUILD fugitive-9999.ebuild 739 SHA256 5cca18dd1da78db96804c3486a3522a841e6f285b0757effe392f6ce112c096d SHA512 b2228e79761d18628c55eaa608029c6b7555275b7300edd372515e062d766bf093b1be6cb2ebe8a740cf4020cccd77484b0c8535dda14e72523dd562e151ba6f WHIRLPOOL 7d1ca08e520d07b6c07587460a5059e02fff8bcf47e522ec71394ceed5618a8f355e6b7d4cad77150894741a3ddf3b97a501451e5cf0c6d4e6b859467add03c6 diff --git a/app-vim/fugitive/fugitive-9999.ebuild b/app-vim/fugitive/fugitive-9999.ebuild new file mode 100644 index 0000000..392fb45 --- /dev/null +++ b/app-vim/fugitive/fugitive-9999.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/fugitive/fugitive-1.2.ebuild,v 1.3 2012/11/27 22:34:33 ulm Exp $ + +EAPI=5 +VIM_PLUGIN_VIM_VERSION="7.3" + +inherit vim-plugin + +DESCRIPTION="vim plugin: a git wrapper for vim" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=2975" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/tpope/vim-fugitive.git" +else + SRC_URI="http://www.vim.org/scripts/download_script.php?src_id=15542 -> ${P}.zip" + KEYWORDS="~amd64 ~x86 ~ppc-macos" + S="${WORKDIR}" +fi + +LICENSE="vim" +IUSE="" + +VIM_PLUGIN_HELPFILES="fugitive.txt" + +DEPEND="app-arch/unzip" +RDEPEND="dev-vcs/git"