Diff gitv-1.3.1 with a gitv-1.3.1-r1

/usr/portage/app-vim/gitv/gitv-1.3.1-r1.ebuild 2023-10-09 14:52:28.912368336 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=6
4
EAPI=8
5 5

  
6 6
inherit vim-plugin
7 7

  
8
if [[ ${PV} == 9999 ]]; then
9
	inherit git-r3
10
	EGIT_REPO_URI="https://github.com/gregsexton/gitv.git"
11
else
12
	SRC_URI="https://github.com/gregsexton/gitv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
13
	KEYWORDS="amd64 x86 ~ppc-macos"
14
fi
15

  
16 8
DESCRIPTION="vim plugin: gitk for vim"
17 9
HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=3574 https://github.com/gregsexton/gitv/"
10
SRC_URI="https://github.com/gregsexton/gitv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
11

  
18 12
LICENSE="vim"
13
KEYWORDS="~amd64 ~x86 ~ppc-macos"
19 14

  
20 15
VIM_PLUGIN_HELPFILES="gitv"
21 16

  
Thank you!