app-vim/merginal: version bump to 2.1.0

This commit is contained in:
Tim Harder
2017-11-06 05:32:50 -05:00
parent ff9224fb54
commit ca4da3e450
2 changed files with 32 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST merginal-2.0.2.tar.gz 15048 SHA256 e1f5030dfc30cf7c2c98f9193529c385c86def213ea2bc36c3feb5feea789a59 SHA512 fd2162491e04afdcf9c81770a3082c035b32ecfd8808be035db64ba6ed4ed4076c692d067f261c093fe12b467e020bb7c6770deabecf72e6631e1248d569b721 WHIRLPOOL 5101f0040f608370296fc57ab5b61be281c5190f9957dfbeb553714fa983434d22e8b866a60457a633e8ff89a4a49f4629bc20d47d310669708464065b966c9e
DIST merginal-2.1.0.tar.gz 13510 SHA256 742efa7ee598bcb605368faffa0082dcf329156f57768a32705ef9c5bd5292fe SHA512 3514c210a016d3446e73b7acc8a8a4cc2427e0133df81d7c644aaa1465e9c5945d3f46b7cac697f70cac990563e595305360991cdaa8244032167aea5f88eaed WHIRLPOOL b8282b61017a53474291ae5b5438849c4e69d99cc8009a9bfd26c5bc53dcbd05fb296e5dbf06d82abfcbc2f384127edafac20c9f3c1414e4f4b425a47956606e

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit vim-plugin
MY_PN=vim-${PN}
MY_P=${MY_PN}-${PV}
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/idanarye/${MY_PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/idanarye/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${MY_P}"
fi
DESCRIPTION="vim script: 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/"
LICENSE="vim"
RDEPEND="app-vim/fugitive"
VIM_PLUGIN_HELPFILES="${PN}"
src_prepare() {
rm README.md || die
default
}