Diff tcomment-3.08.1 with a tcomment-4.00

/usr/portage/app-vim/tcomment/tcomment-4.00.ebuild 2023-10-09 14:52:28.916368336 +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 8
MY_PN="tcomment_vim"
9 9

  
10
if [[ ${PV} == "9999" ]] ; then
11
	EGIT_REPO_URI="https://github.com/tomtom/tcomment_vim.git"
12
	inherit git-r3
13
else
14
	SRC_URI="https://github.com/tomtom/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
15
	KEYWORDS="amd64 x86"
16
	S="${WORKDIR}/${MY_PN}-${PV}"
17
fi
18

  
19 10
DESCRIPTION="vim plugin: an extensible and universal comment toggler"
20
HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1173 https://github.com/tomtom/tcomment_vim"
11
HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1173
12
	https://github.com/tomtom/tcomment_vim"
13
SRC_URI="https://github.com/tomtom/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
14
S="${WORKDIR}/${MY_PN}-${PV}"
15

  
21 16
LICENSE="GPL-3"
17
KEYWORDS="~amd64 ~x86"
22 18

  
23 19
VIM_PLUGIN_HELPFILES="${PN}.txt"
24 20

  
Thank you!