Diff Apache-AuthCookie-3.300.0 with a Apache-AuthCookie-3.310.0

/usr/portage/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.310.0.ebuild 2023-10-09 14:52:29.816368358 +0300
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2023 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=MSCHOUT
7
DIST_VERSION=3.30
7
DIST_VERSION=3.31
8 8
inherit perl-module
9 9

  
10 10
DESCRIPTION="Perl Authentication and Authorization via cookies"
11 11

  
12 12
SLOT="0"
13
KEYWORDS="amd64 x86"
14
IUSE="test"
15
RESTRICT="!test? ( test )"
13
KEYWORDS="~amd64 ~x86"
16 14

  
17 15
RDEPEND="
18 16
	>=www-apache/mod_perl-2
......
24 22
	dev-perl/WWW-Form-UrlEncoded
25 23
	>=dev-perl/URI-1.360.0
26 24
"
27
BDEPEND="${RDEPEND}
25
BDEPEND="
26
	${RDEPEND}
28 27
	virtual/perl-ExtUtils-MakeMaker
29 28
	test? (
30 29
		>=dev-perl/Apache-Test-1.390.0
......
32 31
		!www-apache/mpm_itk
33 32
	)
34 33
"
34

  
35 35
src_test() {
36 36
	perl_rm_files t/author-* t/signature.t
37 37
	perl-module_src_test
Thank you!