Diff File-Map-0.670.0 with a File-Map-0.710.0

/usr/portage/dev-perl/File-Map/File-Map-0.710.0.ebuild 2023-10-09 14:52:29.860368359 +0300
1
# Copyright 1999-2021 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=LEONT
7
DIST_VERSION=0.67
7
DIST_VERSION=0.71
8 8
inherit perl-module
9 9

  
10 10
DESCRIPTION="Memory mapping made simple and safe"
11 11

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

  
17 15
RDEPEND="
18
	virtual/perl-Carp
19
	dev-perl/PerlIO-Layers
20 16
	>=dev-perl/Sub-Exporter-Progressive-0.1.5
21 17
	virtual/perl-XSLoader
22 18
"
23
DEPEND="dev-perl/Module-Build"
24
BDEPEND="${RDEPEND}
19
BDEPEND="
20
	${RDEPEND}
25 21
	>=dev-perl/Module-Build-0.280.0
26 22
	test? (
27 23
		virtual/perl-IO
......
32 28
		virtual/perl-Time-HiRes
33 29
	)
34 30
"
35
src_configure() {
36
	unset LD
37
	[[ -n "${CCLD}" ]] && export LD="${CCLD}"
38
	perl-module_src_configure
39
}
31

  
40 32
src_compile() {
41 33
	./Build --config "optimize=${CFLAGS}" build || die
42 34
}
Thank you!