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 256ED59CAF for ; Sun, 10 Apr 2016 05:25:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94E7F21C010; Sun, 10 Apr 2016 05:25:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 38AA621C010 for ; Sun, 10 Apr 2016 05:25:21 +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 A7263340817 for ; Sun, 10 Apr 2016 05:25:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 111E0C8 for ; Sun, 10 Apr 2016 05:25:11 +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: <1460265385.daa7821703b256916c0b5355518f5a3bd6ea934b.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/merginal/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/merginal/Manifest app-vim/merginal/merginal-2.0.0.ebuild X-VCS-Directories: app-vim/merginal/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: daa7821703b256916c0b5355518f5a3bd6ea934b X-VCS-Branch: master Date: Sun, 10 Apr 2016 05:25:11 +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: a8cb9b93-c639-458b-a567-c43645acf44c X-Archives-Hash: 48da0cc6356aa99b49771331becb0d8f commit: daa7821703b256916c0b5355518f5a3bd6ea934b Author: Tim Harder gentoo org> AuthorDate: Sun Apr 10 05:16:06 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Sun Apr 10 05:16:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daa78217 app-vim/merginal: version bump to 2.0.0 app-vim/merginal/Manifest | 1 + app-vim/merginal/merginal-2.0.0.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-vim/merginal/Manifest b/app-vim/merginal/Manifest index ca50d6e..3eaaf25 100644 --- a/app-vim/merginal/Manifest +++ b/app-vim/merginal/Manifest @@ -1 +1,2 @@ DIST merginal-1.6.0.tar.gz 13882 SHA256 c2badc8a95fe0706465faedddbc08ca4bc83aa412fe226d7032171e8fc39a23a SHA512 9b3de15429160b4a2983f80c23483f7dee207586c89bbc70793b08639abff670762b54a4fac8f1bf907a0688ae4323876adcba29e3468f57ab0da57f5ce4105b WHIRLPOOL ff21e8228565707eb3cd794f48f68186f0da4a7f0412c61a762878718a617d6cb2de0b1beb769fe90162e50a80ac2feb494001e300d471bf78fe876c2185629f +DIST merginal-2.0.0.tar.gz 14746 SHA256 43648f6e7fc8b9ac2a4dc727fc87d53db5565f823c1323e99a4fbf7574b2ce07 SHA512 9274749378981368c9afd6629b7b5bc0bd0e3153dda1a6828f43da31acd6e253637dd5703609a708b8b69dfe0d5a217d2414c36e947b985d97d341361fd4928e WHIRLPOOL 591c0c1466e79f8c210fe6f0c347a66eb1ef7ae92c42e8928cf44c036a0f05150c03f3cb83969fe3faa2fa80290a79bea5298be0c13d0aac23667def7895cc87 diff --git a/app-vim/merginal/merginal-2.0.0.ebuild b/app-vim/merginal/merginal-2.0.0.ebuild new file mode 100644 index 0000000..1bea30c --- /dev/null +++ b/app-vim/merginal/merginal-2.0.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit vim-plugin + +MY_PN=vim-${PN} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="fugitive extension to manage and merge git branches" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=4955 https://github.com/idanarye/vim-merginal/" +SRC_URI="https://github.com/idanarye/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="vim" +KEYWORDS="~amd64 ~x86" + +RDEPEND="app-vim/fugitive" + +VIM_PLUGIN_HELPFILES="${PN}" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + rm README.md || die +}