Diff gist-7.3 with a gist-7.3-r1

/usr/portage/app-vim/gist/gist-7.3-r1.ebuild 2023-10-09 14:52:28.912368336 +0300
1 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
MY_PN=gist-vim
9
MY_P=${MY_PN}-${PV}
8
MY_PN="gist-vim"
9
MY_P="${MY_PN}-${PV}"
10 10

  
11 11
DESCRIPTION="vim plugin: interact with gists (gist.github.com)"
12
HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=2423 https://github.com/mattn/vim-gist"
12
HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=2423
13
	https://github.com/mattn/vim-gist"
13 14
SRC_URI="https://github.com/mattn/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
15
S="${WORKDIR}/${MY_P}"
16

  
14 17
LICENSE="BSD"
15
KEYWORDS="amd64 x86 ~x64-macos"
18
KEYWORDS="~amd64 ~x86 ~x64-macos"
16 19

  
17 20
RDEPEND="
18 21
	app-vim/webapi
......
22 25

  
23 26
VIM_PLUGIN_HELPFILES="Gist.vim"
24 27

  
25
S=${WORKDIR}/${MY_P}
26

  
27 28
src_compile() { :; }
Thank you!