Diff gitlog-6.0.0 with a gitlog-6.0.0-r1

/usr/portage/app-vim/gitlog/gitlog-6.0.0-r1.ebuild 2023-10-09 14:52:28.912368336 +0300
1
# Copyright 1999-2022 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
	EGIT_REPO_URI="https://github.com/PAntoine/vimgitlog.git"
10
	inherit git-r3
11
else
12
	SRC_URI="https://github.com/PAntoine/vimgitlog/archive/version_${PV}.tar.gz -> ${P}.tar.gz"
13
	KEYWORDS="amd64 x86"
14
	S=${WORKDIR}/vim${PN}-version_${PV}
15
fi
16

  
17 8
DESCRIPTION="vim plugin: git log and diff plugin for vim"
18
HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=4294 https://github.com/PAntoine/vimgitlog/"
9
HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=4294
10
	https://github.com/PAntoine/vimgitlog/"
11
SRC_URI="https://github.com/PAntoine/vimgitlog/archive/version_${PV}.tar.gz -> ${P}.tar.gz"
12
S="${WORKDIR}/vim${PN}-version_${PV}"
13

  
19 14
LICENSE="Artistic"
15
KEYWORDS="~amd64 ~x86"
20 16

  
21 17
VIM_PLUGIN_HELPFILES="${PN}.txt"
Thank you!