Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/fugitive/
Date: Thu, 20 Sep 2018 05:31:35
Message-Id: 1537421451.6d36b35f2ccdc21b5575751bbc47972fa4db0937.radhermit@gentoo
1 commit: 6d36b35f2ccdc21b5575751bbc47972fa4db0937
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 19 05:53:25 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 20 05:30:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d36b35f
7
8 app-vim/fugitive: version bump to 2.4
9
10 app-vim/fugitive/Manifest | 1 +
11 app-vim/fugitive/fugitive-2.4.ebuild | 22 ++++++++++++++++++++++
12 2 files changed, 23 insertions(+)
13
14 diff --git a/app-vim/fugitive/Manifest b/app-vim/fugitive/Manifest
15 index d439d3ff431..28a842482bb 100644
16 --- a/app-vim/fugitive/Manifest
17 +++ b/app-vim/fugitive/Manifest
18 @@ -1,2 +1,3 @@
19 DIST fugitive-2.2.tar.gz 30651 BLAKE2B 7e6ecf372661afcfa586097e979c996f19df85bf41d3b2409e26fe9131a48c02946614a15231accecbe8906a458698f89b66cc86f3707f2f7014e00d795786fe SHA512 763fc352e495dae6346fdedee5e3993a11fe402dbad0e9ee4b002b6b416404c46b56a061b3d9e663174b371d2d62e62e22f5a2cf8767fb6aee28b236c77d9d41
20 DIST fugitive-2.3.tar.gz 30949 BLAKE2B ff62ad9f5b85fff6a06fe006884901ca0f80a5ee139032955a6af596cadf3dca18d73980da12429706102cbe8105fcbff5fb1dd6375b851f978746a5251f1d22 SHA512 8a176705c0326ac034abaf23423e58d490feb7f11dc45ad23641fafb95279094ed38475a90e7c2e7fc95c615558db75f3587740e2658f3988fa07a1957aa1039
21 +DIST fugitive-2.4.tar.gz 33340 BLAKE2B d5e5df47e0492510abae735dd47b51d797fe38862401f7d8e64404f6fa4e040641141c6febb13b05910cc44dc0372b084fe0ee8c3980a73d11d65e1a502ed627 SHA512 fb9d4129090bbafcace9400e9f21feae06bc9f903a54cfef7c4cbfa62856019a511b924c294e86fd26cd713d588ca0054a17d9676b59e2f406779ab5d51c3363
22
23 diff --git a/app-vim/fugitive/fugitive-2.4.ebuild b/app-vim/fugitive/fugitive-2.4.ebuild
24 new file mode 100644
25 index 00000000000..3ec007ea68b
26 --- /dev/null
27 +++ b/app-vim/fugitive/fugitive-2.4.ebuild
28 @@ -0,0 +1,22 @@
29 +# Copyright 1999-2018 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +inherit vim-plugin
34 +
35 +if [[ ${PV} == 9999 ]]; then
36 + inherit git-r3
37 + EGIT_REPO_URI="https://github.com/tpope/vim-fugitive.git"
38 +else
39 + inherit vcs-snapshot
40 + SRC_URI="https://github.com/tpope/vim-fugitive/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 + KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos"
42 +fi
43 +
44 +DESCRIPTION="vim plugin: a git wrapper for vim"
45 +HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=2975 https://github.com/tpope/vim-fugitive/"
46 +LICENSE="vim"
47 +
48 +VIM_PLUGIN_HELPFILES="${PN}.txt"
49 +
50 +RDEPEND="dev-vcs/git"