Diff perlomni-2.5 with a perlomni-2.5-r1

/usr/portage/app-vim/perlomni/perlomni-2.5-r1.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
DESCRIPTION="vim plugin: a vim plugin with Perl omni completion functions"
9 9
HOMEPAGE="https://github.com/c9s/perlomni.vim"
10 10
SRC_URI="https://github.com/c9s/${PN}.vim/archive/v${PV}.tar.gz -> ${P}.tar.gz"
11
LICENSE="vim.org"
12
KEYWORDS="amd64 ppc ppc64 x86"
11
S="${WORKDIR}/${PN}.vim-${PV}"
13 12

  
14
DEPEND="
15
	app-arch/unzip
16
	dev-lang/perl"
13
LICENSE="vim.org"
14
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
17 15

  
16
DEPEND="dev-lang/perl"
18 17
RDEPEND="${DEPEND}"
19 18

  
20
S="${WORKDIR}/${PN}.vim-${PV}"
21

  
22 19
src_compile() { :; }
Thank you!