Diff B-COW-0.4.0-r1 with a B-COW-0.7.0

/usr/portage/dev-perl/B-COW/B-COW-0.7.0.ebuild 2023-10-09 14:52:29.820368358 +0300
1 1
# Copyright 2020-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=ATOOMIC
7
DIST_VERSION=0.004
7
DIST_VERSION=0.007
8 8
DIST_EXAMPLES=("examples/*")
9 9
inherit perl-module
10 10

  
11
DESCRIPTION="additional B helpers to check COW status"
11
DESCRIPTION="Additional B helpers to check COW status"
12

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

  
17 16
BDEPEND="
18 17
	virtual/perl-ExtUtils-MakeMaker
19 18
	test? (
20 19
		virtual/perl-File-Spec
21 20
		virtual/perl-Test-Simple
21
		virtual/perl-XSLoader
22 22
	)
23 23
"
24
src_compile() {
25
	mymake=(
26
		"OPTIMIZE=${CFLAGS}"
27
	)
28
	perl-module_src_compile
29
}
Thank you!