Diff Test-Manifest-2.22.0 with a Test-Manifest-2.23.0

/usr/portage/dev-perl/Test-Manifest/Test-Manifest-2.23.0.ebuild 2023-10-09 14:52:29.932368361 +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=BDFOY
7
DIST_VERSION=2.022
7
DIST_VERSION=2.023
8 8
inherit perl-module
9 9

  
10 10
DESCRIPTION="Interact with a t/test_manifest file"
......
17 17
	virtual/perl-File-Spec
18 18
	virtual/perl-Test-Harness
19 19
"
20
BDEPEND="${RDEPEND}
20
BDEPEND="
21
	${RDEPEND}
21 22
	>=virtual/perl-ExtUtils-MakeMaker-6.640.0
22 23
	test? (
23 24
		virtual/perl-File-Temp
......
27 28

  
28 29
src_test() {
29 30
	# Ugh, Upstream has tests that depend on tests ...
30
	echo 'print qq[1..1\nok 1];' > "${S}/t/99pod.t"
31
	echo 'print qq[1..1\nok 1];' > "${S}/t/pod_coverage.t"
31
	echo 'print qq[1..1\nok 1];' > "${S}/t/99pod.t" || die
32
	echo 'print qq[1..1\nok 1];' > "${S}/t/pod_coverage.t" || die
32 33
	perl-module_src_test
33 34
}
Thank you!