Diff CBOR-XS-1.830.0 with a CBOR-XS-1.860.0

/usr/portage/dev-perl/CBOR-XS/CBOR-XS-1.860.0.ebuild 2023-10-09 14:52:29.824368359 +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=MLEHMANN
7
DIST_VERSION=1.83
7
DIST_VERSION=1.86
8 8

  
9 9
inherit perl-module
10 10

  
11 11
DESCRIPTION="Concise Binary Object Representation (CBOR, RFC7049)"
12

  
12 13
# License note: see bottom of ecb.h license block
13 14
LICENSE="GPL-3 || ( GPL-2+ BSD )"
14 15
SLOT="0"
15 16
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
16
IUSE="test"
17
RESTRICT="!test? ( test )"
18 17

  
19 18
RDEPEND="
20 19
	dev-perl/Types-Serialiser
21 20
	dev-perl/common-sense
22 21
"
23
DEPEND="${RDEPEND}
22
DEPEND="
23
	${RDEPEND}
24 24
	dev-perl/Canary-Stability
25 25
	>=virtual/perl-ExtUtils-MakeMaker-6.520.0
26 26
"
27

  
28
src_compile() {
29
	mymake=(
30
		"OPTIMIZE=${CFLAGS}"
31
	)
32
	perl-module_src_compile
33
}
Thank you!