Diff Term-ReadLine-Gnu-1.420.0-r1 with a Term-ReadLine-Gnu-1.450.0

/usr/portage/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.450.0.ebuild 2023-10-09 14:52:29.928368361 +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=7
4
EAPI=8
5 5

  
6 6
DIST_AUTHOR=HAYASHI
7
DIST_VERSION=1.42
7
DIST_VERSION=1.45
8 8
DIST_EXAMPLES=("eg/*")
9 9
inherit perl-module
10 10

  
......
12 12

  
13 13
SLOT="0"
14 14
KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
15
IUSE=""
16 15

  
17 16
RDEPEND="
18
	>=sys-libs/readline-6.2:0=
19
	sys-libs/ncurses:0=
17
	>=sys-libs/readline-6.2:=
18
	sys-libs/ncurses:=
20 19
"
21 20
DEPEND="
22 21
	${RDEPEND}
23 22
"
23
# Newer MakeMaker needed for macOS at least
24 24
BDEPEND="
25 25
	${RDEPEND}
26
	virtual/perl-ExtUtils-MakeMaker
26
	>=virtual/perl-ExtUtils-MakeMaker-7.580.0
27 27
"
28 28

  
29 29
src_prepare() {
30 30
	default
31

  
31 32
	# search_termlib() selects termcap when sys-libs/libtermcap-compat is installed
32 33
	# despite the absence of libtermcap.so symlink
33 34
	sed -i -e \
Thank you!