Diff HTML-Template-Pro-0.951.0-r1 with a HTML-Template-Pro-0.952.400

/usr/portage/dev-perl/HTML-Template-Pro/HTML-Template-Pro-0.952.400.ebuild 2023-10-09 14:52:29.872368360 +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
DIST_AUTHOR=VIY
6
DIST_VERSION=0.9510
7
DIST_VERSION=0.9524
7 8
inherit perl-module
8 9

  
9 10
DESCRIPTION='Perl/XS module to use HTML Templates from CGI scripts'
......
12 13
IUSE="test"
13 14
RESTRICT="!test? ( test )"
14 15

  
15
RDEPEND="
16
RDEPEND="dev-libs/libpcre2
16 17
	>=virtual/perl-File-Path-2.0.0
17 18
	virtual/perl-File-Spec
18
	>=dev-perl/JSON-2.0.0
19
"
19
	>=dev-perl/JSON-2.0.0"
20
DEPEND="dev-libs/libpcre2"
20 21
BDEPEND="${RDEPEND}
21 22
	virtual/perl-ExtUtils-MakeMaker
22
	dev-libs/libpcre
23 23
	test? ( virtual/perl-Test-Simple )
24 24
"
25

  
26
src_configure() {
27
	local myconf=(
28
		"PCRE2=1"
29
	)
30

  
31
	perl-module_src_configure "${myconf[@]}"
32
}
Thank you!