Diff Crypt-OpenSSL-RSA-0.310.0 with a Crypt-OpenSSL-RSA-0.320.0

/usr/portage/dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.320.0.ebuild 2023-10-09 14:52:29.836368359 +0300
1 1
# Copyright 1999-2021 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=TODDR
7
DIST_VERSION=0.31
7
DIST_VERSION=0.32
8 8
inherit perl-module
9 9

  
10 10
DESCRIPTION="RSA encoding and decoding using the OpenSSL libraries"
11 11

  
12 12
SLOT="0"
13 13
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
14
IUSE="test"
15
RESTRICT="!test? ( test )"
16 14

  
17 15
RDEPEND="
18 16
	dev-perl/Crypt-OpenSSL-Bignum
......
29 27
		virtual/perl-Test
30 28
	)
31 29
"
30

  
31
PATCHES=(
32
	"${FILESDIR}/${P}-openssl-3.0.0.patch"
33
)
34

  
32 35
PERL_RM_FILES=(
33 36
	t/z_kwalitee.t
34 37
	t/z_perl_minimum_version.t
......
37 40
	t/z_pod.t
38 41
)
39 42
mydoc="rfc*.txt"
40

  
41
src_compile() {
42
	mymake=(
43
		"OPTIMIZE=${CFLAGS}"
44
	)
45
	perl-module_src_compile
46
}
Thank you!