Diff Data-Printer-1.0.4 with a Data-Printer-1.1.0

/usr/portage/dev-perl/Data-Printer/Data-Printer-1.1.0.ebuild 2023-10-09 14:52:29.844368359 +0300
1
# Copyright 2020-2021 Gentoo Authors
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=GARU
7
DIST_VERSION=1.000004
8
DIST_EXAMPLES=(
9
	"examples/*"
10
)
7
DIST_VERSION=1.001000
8
DIST_EXAMPLES=( "examples/*" )
11 9
inherit perl-module
12 10

  
13 11
DESCRIPTION="Colored and full-featured pretty print of Perl data structures and objects"
12

  
14 13
SLOT="0"
15
KEYWORDS="~amd64 ~riscv ~x86"
16
IUSE="test"
17
RESTRICT="!test? ( test )"
14
KEYWORDS="~amd64 ~loong ~riscv ~x86"
18 15

  
19 16
RDEPEND="
20 17
	virtual/perl-File-Spec
21 18
	virtual/perl-File-Temp
22 19
	virtual/perl-Scalar-List-Utils
23 20
"
24
BDEPEND="${RDEPEND}
21
BDEPEND="
22
	${RDEPEND}
25 23
	virtual/perl-ExtUtils-MakeMaker
26 24
	test? (
27 25
		virtual/perl-File-Temp
Thank you!