Diff List-MoreUtils-0.428.0 with a List-MoreUtils-0.430.0

/usr/portage/dev-perl/List-MoreUtils/List-MoreUtils-0.430.0.ebuild 2023-10-09 14:52:29.880368360 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2022 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=REHSACK
7
DIST_VERSION=0.428
7
DIST_VERSION=0.430
8 8
inherit perl-module
9 9

  
10 10
DESCRIPTION="Provide the missing functionality from List::Util"
11 11

  
12 12
SLOT="0"
13
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
14
IUSE="test +xs"
15
RESTRICT="!test? ( test )"
13
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
14
IUSE="+xs"
15

  
16 16
# See MoreUtils.pm/LICENSE
17 17
LICENSE="Apache-2.0 || ( Artistic GPL-1+ )"
18 18

  
19
PDEPEND="xs? ( >=dev-perl/List-MoreUtils-XS-0.426.0 )"
20
RDEPEND=">=dev-perl/Exporter-Tiny-0.38.0"
19
PDEPEND="
20
	xs? ( >=dev-perl/List-MoreUtils-XS-0.430.0 )
21
"
22
RDEPEND="
23
	>=dev-perl/Exporter-Tiny-0.38.0
24
"
21 25
BDEPEND="${RDEPEND}
22 26
	virtual/perl-ExtUtils-MakeMaker
27
	>=dev-perl/Config-AutoConf-0.315.0
23 28
	test? (
24 29
		virtual/perl-Storable
30
		dev-perl/Test-LeakTrace
25 31
		>=virtual/perl-Test-Simple-0.960.0
26 32
	)
27 33
"
34

  
28 35
PATCHES=("${FILESDIR}/${PN}-0.426.0-xs-config.patch")
36

  
29 37
src_configure() {
30 38
	export LMU_USE_XS="$(usex xs 1 0)"
31 39
	perl-module_src_configure
Thank you!