Diff vifm-0.12 with a vifm-0.13

/usr/portage/app-misc/vifm/vifm-0.13.ebuild 2023-10-09 14:52:28.824368333 +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=7
4
EAPI=8
5 5

  
6 6
inherit autotools vim-doc xdg
7 7

  
8 8
DESCRIPTION="Console file manager with vi(m)-like keybindings"
9 9
HOMEPAGE="https://vifm.info/"
10
SRC_URI="https://github.com/vifm/vifm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
10
if [[ ${PV} == 9999 ]] ; then
11
	EGIT_REPO_URI="https://github.com/vifm/vifm"
12
	inherit git-r3
13
else
14
	SRC_URI="https://github.com/vifm/vifm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
15
	KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
16
fi
11 17

  
12 18
LICENSE="GPL-2"
13 19
SLOT="0"
14
KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
15 20
IUSE="+extended-keys gtk +magic +vim +vim-syntax X"
16 21

  
17 22
DEPEND="
18
	>=sys-libs/ncurses-5.9-r3:0
23
	>=sys-libs/ncurses-5.9-r3:=
19 24
	magic? ( sys-apps/file )
20 25
	gtk? ( x11-libs/gtk+:2 )
21
	X? ( x11-libs/libX11 )"
22

  
23
RDEPEND="${DEPEND}
26
	X? ( x11-libs/libX11 )
27
"
28
RDEPEND="
29
	${DEPEND}
24 30
	vim? ( || ( app-editors/vim app-editors/gvim ) )
25
	vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )"
31
	vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
32
"
33
# "Either perl or Vim is necessary to generate tags for documentation in Vim's format." from configure
34
BDEPEND="|| ( dev-lang/perl app-editors/vim )"
26 35

  
27 36
src_prepare() {
28 37
	default
Thank you!