Diff mod_perl-2.0.11-r1 with a mod_perl-2.0.12

/usr/portage/www-apache/mod_perl/mod_perl-2.0.12.ebuild 2023-10-09 14:52:35.868368511 +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 4
EAPI=7
5 5

  
6
DIST_TEST=do
6 7
inherit depend.apache apache-module perl-module
7 8

  
8 9
DESCRIPTION="An embedded Perl interpreter for Apache2"
......
15 16
IUSE="debug ithreads test"
16 17
RESTRICT="!test? ( test )"
17 18

  
18
DIST_TEST=do
19

  
20 19
# Apache::Reload, Apache::SizeLimit, and Apache::Test are force-unbundled.
21 20
# The minimum versions requested here are the bundled versions.
22 21

  
......
32 31
	>=dev-libs/apr-util-1.4
33 32
	!ithreads? ( www-servers/apache[-apache2_mpms_event,-apache2_mpms_worker,apache2_mpms_prefork] )
34 33
"
35
DEPEND="${RDEPEND}
34
DEPEND="${RDEPEND}"
35
BDEPEND="
36 36
	dev-perl/Module-Build
37 37
	test? (
38 38
		>=dev-perl/CGI-3.110.0
......
57 57
need_apache2
58 58

  
59 59
PATCHES=(
60
	"${FILESDIR}/${PN}"-2.0.1-sneak-tmpdir.patch  # seems to fix the make test problem
61
	"${FILESDIR}/${PN}"-2.0.4-inline.patch        # 550244
62
	"${FILESDIR}/${PN}"-2.0.10_rc1-bundled-Apache-Test.patch # 352724
63
	"${FILESDIR}/${PN}"-2.0.10_rc1-Gentoo-not-Unix.patch
64
	"${FILESDIR}/${PN}"-2.0.11-ranlib.patch       # 728554
65
	"${FILESDIR}/${PN}"-2.0.11-perl534.patch      # 791403
60
	"${FILESDIR}"/${PN}-2.0.1-sneak-tmpdir.patch  # seems to fix the make test problem
61
	"${FILESDIR}"/${PN}-2.0.4-inline.patch        # 550244
62
	"${FILESDIR}"/${PN}-2.0.10_rc1-bundled-Apache-Test.patch # 352724
63
	"${FILESDIR}"/${PN}-2.0.10_rc1-Gentoo-not-Unix.patch
64
	"${FILESDIR}"/${PN}-2.0.11-ranlib.patch       # 728554
65
	"${FILESDIR}"/${PN}-2.0.12-perl538.patch
66
	"${FILESDIR}"/${PN}-2.0.12-avoid-pch.patch
66 67
)
67 68

  
68 69
src_prepare() {
Thank you!