Diff JSON-Any-1.390.0-r1 with a JSON-Any-1.400.0

/usr/portage/dev-perl/JSON-Any/JSON-Any-1.400.0.ebuild 2023-10-09 14:52:29.876368360 +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 4
EAPI=8
5 5

  
6 6
DIST_AUTHOR=ETHER
7
DIST_VERSION=1.39
7
DIST_VERSION=1.40
8 8
inherit perl-module
9 9

  
10 10
DESCRIPTION="Wrapper Class for the various JSON classes (DEPRECATED)"
......
20 20
		dev-perl/JSON
21 21
	)
22 22
"
23
BDEPEND="${RDEPEND}
23
BDEPEND="
24
	${RDEPEND}
25
	>=virtual/perl-CPAN-Meta-Requirements-2.120.620
24 26
	virtual/perl-ExtUtils-MakeMaker
25 27
	test? (
26 28
		virtual/perl-Data-Dumper
27 29
		virtual/perl-File-Spec
30
		virtual/perl-Module-Metadata
28 31
		virtual/perl-Storable
29 32
		dev-perl/Test-Fatal
33
		dev-perl/Test-Needs
30 34
		virtual/perl-Test-Simple
31
		dev-perl/Test-Requires
32 35
		>=dev-perl/Test-Warnings-0.9.0
33 36
		dev-perl/Test-Without-Module
34 37
	)
35 38
"
39

  
40
PERL_RM_FILES=(
41
	# With 1.400.0, fails as "Failed test 'trapped a failure because of a non-reference'"
42
	# https://rt.cpan.org/Public/Bug/Display.html?id=127753
43
	# https://github.com/karenetheridge/JSON-Any/pull/2
44
	# bug #807316
45
	t/04-ENV.t
46
)
Thank you!