Diff alternate-2.18-r2 with a alternate-2.18-r3

/usr/portage/app-vim/alternate/alternate-2.18-r3.ebuild 2023-10-09 14:52:28.908368335 +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
DESCRIPTION="vim plugin: quickly switch between .c and .h files"
9
HOMEPAGE="https://github.com/vim-scripts/a.vim https://www.vim.org/scripts/script.php?script_id=31"
10

  
9
HOMEPAGE="
10
	https://github.com/vim-scripts/a.vim
11
	https://www.vim.org/scripts/script.php?script_id=31"
11 12
SRC_URI="
12 13
	https://github.com/vim-scripts/a.vim/archive/${PV}.tar.gz -> ${P}.tar.gz
13 14
	https://www.vim.org/scripts/download_script.php?src_id=6347 -> ${PN}.txt"
15
S="${WORKDIR}/a.vim-${PV}"
14 16

  
15 17
LICENSE="alternate"
16
KEYWORDS="~alpha amd64 ~ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
18
KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
17 19

  
18 20
VIM_PLUGIN_HELPTEXT=\
19 21
"This plugin provides a new :A command which will switch between a .c
......
26 28
	"${FILESDIR}"/${P}-hh-cc-alternation.patch
27 29
)
28 30

  
29
S="${WORKDIR}/a.vim-${PV}"
30

  
31 31
src_prepare() {
32 32
	default
33 33
	mkdir -p "${S}/doc" || die
Thank you!