Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/gitgutter/
Date: Tue, 31 May 2022 23:46:23
Message-Id: 1654040765.8c659f037944be911121b4c4e43ff06aa3316ecf.sam@gentoo
1 commit: 8c659f037944be911121b4c4e43ff06aa3316ecf
2 Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz>
3 AuthorDate: Mon May 30 14:43:02 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue May 31 23:46:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c659f03
7
8 app-vim/gitgutter: add 20220524
9
10 Bug: https://bugs.gentoo.org/830867
11 Signed-off-by: Thomas Bracht Laumann Jespersen <t <AT> laumann.xyz>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 app-vim/gitgutter/Manifest | 1 +
15 app-vim/gitgutter/gitgutter-20220524.ebuild | 29 +++++++++++++++++++++++++++++
16 2 files changed, 30 insertions(+)
17
18 diff --git a/app-vim/gitgutter/Manifest b/app-vim/gitgutter/Manifest
19 index 212b80f5d342..c984b9c0c039 100644
20 --- a/app-vim/gitgutter/Manifest
21 +++ b/app-vim/gitgutter/Manifest
22 @@ -1,2 +1,3 @@
23 DIST gitgutter-20180316.tar.gz 46344 BLAKE2B f981753a0f8d066b7cb5c16c49cfdd1a1aac1c6623b4645b8b1abd5719470ac181e09c8b736f8b8a14e6098b60cb8f97b114dc5c2a587b6d1875fcf27b4b12cf SHA512 15873b2cccc49f8aec9de312efedc615d6fa822b45ca8ce53cc6cc878fcaf3a6ab3f02eb5d082ff329528cce1b48358846b0aba3f9d3bc8aadd29aa57d3b1a30
24 DIST gitgutter-20180815.tar.gz 46741 BLAKE2B 85189390a2d8c5feaf8d2fabfd2c72bf79954fd1e9f2c3ffeca748e84caf13924f71ef5837ab62aef0ae003a01304305e73bbcb12dca27294c8164e960249fec SHA512 b6d3bd0f779d9afbd38df33888ab3ee0f1d8d10de0a6c5c6766f7f73a292cdd589a6774faa2871877075f6cedd29f14bba07c9a769d706e0e67d8817db86cfaa
25 +DIST gitgutter-20220524.tar.gz 46741 BLAKE2B 85189390a2d8c5feaf8d2fabfd2c72bf79954fd1e9f2c3ffeca748e84caf13924f71ef5837ab62aef0ae003a01304305e73bbcb12dca27294c8164e960249fec SHA512 b6d3bd0f779d9afbd38df33888ab3ee0f1d8d10de0a6c5c6766f7f73a292cdd589a6774faa2871877075f6cedd29f14bba07c9a769d706e0e67d8817db86cfaa
26
27 diff --git a/app-vim/gitgutter/gitgutter-20220524.ebuild b/app-vim/gitgutter/gitgutter-20220524.ebuild
28 new file mode 100644
29 index 000000000000..257b0db9bd08
30 --- /dev/null
31 +++ b/app-vim/gitgutter/gitgutter-20220524.ebuild
32 @@ -0,0 +1,29 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +inherit vim-plugin
38 +
39 +if [[ ${PV} == 9999* ]]; then
40 + EGIT_REPO_URI="https://github.com/airblade/vim-gitgutter.git"
41 + inherit git-r3
42 +else
43 + inherit vcs-snapshot
44 + COMMIT_HASH="ded11946c04aeab5526f869174044019ae9e3c32"
45 + SRC_URI="https://github.com/airblade/vim-gitgutter/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
46 + KEYWORDS="~amd64 ~x86"
47 +fi
48 +
49 +DESCRIPTION="vim plugin: shows a git diff in the sign column and stages/reverts hunks"
50 +HOMEPAGE="https://github.com/airblade/vim-gitgutter/"
51 +LICENSE="MIT"
52 +VIM_PLUGIN_HELPFILES="${PN}.txt"
53 +
54 +RDEPEND="dev-vcs/git"
55 +
56 +src_prepare() {
57 + default
58 +
59 + # remove unwanted test dir
60 + rm -r test || die
61 +}