Diff Crypt-Curve25519-0.60.0-r1 with a Crypt-Curve25519-0.70.0

/usr/portage/dev-perl/Crypt-Curve25519/Crypt-Curve25519-0.70.0.ebuild 2023-10-09 14:52:29.836368359 +0300
1
# Copyright 1999-2018 Gentoo Foundation
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=6
4
EAPI=8
5 5

  
6
DIST_AUTHOR=AJGB
7
DIST_VERSION=0.06
8
inherit perl-module flag-o-matic
6
DIST_AUTHOR=KARASIK
7
DIST_VERSION=0.07
8
inherit perl-module
9 9

  
10 10
DESCRIPTION="Shared secret elliptic-curve Diffie-Hellman generator"
11

  
12
LICENSE="|| ( Artistic GPL-1+ ) BSD CC-PD"
11 13
SLOT="0"
12 14
KEYWORDS="amd64 x86"
13
IUSE="test"
14

  
15
RDEPEND="
16
	virtual/perl-Carp
17
	virtual/perl-Exporter
18
	virtual/perl-XSLoader
19
"
20
DEPEND="${RDEPEND}
21
	virtual/perl-ExtUtils-MakeMaker
22
	test? (
23
		virtual/perl-File-Spec
24
		virtual/perl-IO
25
		virtual/perl-Test-Simple
26
	)
27
"
28 15

  
29
src_compile() {
30
	grep -rl "fmul" ./ | xargs sed -i 's/fmul/fixedvar/g'
31
	default
32
}
16
BDEPEND="virtual/perl-ExtUtils-MakeMaker"
Thank you!