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 94F21139694 for ; Tue, 7 Mar 2017 11:01:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C410E0C32; Tue, 7 Mar 2017 11:01:36 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4ACEDE0C32 for ; Tue, 7 Mar 2017 11:01:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D679B34164E for ; Tue, 7 Mar 2017 11:01:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DE2A5F6D for ; Tue, 7 Mar 2017 11:01:33 +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: <1488884394.f1a7597c991331106308faecb7905191bfdf41d6.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/vimagit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/vimagit/Manifest app-vim/vimagit/metadata.xml app-vim/vimagit/vimagit-1.7.1.ebuild app-vim/vimagit/vimagit-9999.ebuild X-VCS-Directories: app-vim/vimagit/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: f1a7597c991331106308faecb7905191bfdf41d6 X-VCS-Branch: master Date: Tue, 7 Mar 2017 11:01: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-Archives-Salt: 9d97a6e9-94a2-47de-ae71-cb8ff28e7fe9 X-Archives-Hash: af550ca8a4d03a03f22fe082d15ca7a9 commit: f1a7597c991331106308faecb7905191bfdf41d6 Author: Tim Harder gentoo org> AuthorDate: Tue Mar 7 10:57:53 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Tue Mar 7 10:59:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1a7597c app-vim/vimagit: initial import app-vim/vimagit/Manifest | 1 + app-vim/vimagit/metadata.xml | 11 +++++++++++ app-vim/vimagit/vimagit-1.7.1.ebuild | 20 ++++++++++++++++++++ app-vim/vimagit/vimagit-9999.ebuild | 20 ++++++++++++++++++++ 4 files changed, 52 insertions(+) diff --git a/app-vim/vimagit/Manifest b/app-vim/vimagit/Manifest new file mode 100644 index 00000000000..4c24c28e67c --- /dev/null +++ b/app-vim/vimagit/Manifest @@ -0,0 +1 @@ +DIST vimagit-1.7.1.tar.gz 35302 SHA256 96b61af002f31f1a73bb67ced06e8aced696e6c9539f0d5be9f25c469f1a16c4 SHA512 8ce2959c135da90b880ccdcd66e71661c7908f250d47a24ede025762a6e9422cebcf8fd516bf99e475605f4278e232713c66293781ceb95f47a22031e9260a71 WHIRLPOOL 8331ab3736017b8930934e8661002edf3d24efe92032f7e0656338ae44f21b02037a9673f91e6733b4ef09b15a75b413419b91a656a54224317d5aba24aa1f9d diff --git a/app-vim/vimagit/metadata.xml b/app-vim/vimagit/metadata.xml new file mode 100644 index 00000000000..5b153f66c47 --- /dev/null +++ b/app-vim/vimagit/metadata.xml @@ -0,0 +1,11 @@ + + + + + vim@gentoo.org + Gentoo Vim Project + + + jreybert/vimagit + + diff --git a/app-vim/vimagit/vimagit-1.7.1.ebuild b/app-vim/vimagit/vimagit-1.7.1.ebuild new file mode 100644 index 00000000000..1583759b0cc --- /dev/null +++ b/app-vim/vimagit/vimagit-1.7.1.ebuild @@ -0,0 +1,20 @@ +# 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 + inherit git-r3 + EGIT_REPO_URI="https://github.com/jreybert/vimagit.git" +else + SRC_URI="https://github.com/jreybert/vimagit/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="vim plugin: ease your git workflow within vim" +HOMEPAGE="https://github.com/jreybert/vimagit" +LICENSE="vim" +VIM_PLUGIN_HELPFILES="${PN}" + +RDEPEND="dev-vcs/git" diff --git a/app-vim/vimagit/vimagit-9999.ebuild b/app-vim/vimagit/vimagit-9999.ebuild new file mode 100644 index 00000000000..1583759b0cc --- /dev/null +++ b/app-vim/vimagit/vimagit-9999.ebuild @@ -0,0 +1,20 @@ +# 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 + inherit git-r3 + EGIT_REPO_URI="https://github.com/jreybert/vimagit.git" +else + SRC_URI="https://github.com/jreybert/vimagit/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="vim plugin: ease your git workflow within vim" +HOMEPAGE="https://github.com/jreybert/vimagit" +LICENSE="vim" +VIM_PLUGIN_HELPFILES="${PN}" + +RDEPEND="dev-vcs/git"