Diff GnuPG-Interface-1.20.0 with a GnuPG-Interface-1.30.0

/usr/portage/dev-perl/GnuPG-Interface/GnuPG-Interface-1.30.0.ebuild 2023-10-09 14:52:29.868368360 +0300
1
# Copyright 1999-2022 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=BPS
7
DIST_VERSION=1.02
7
DIST_VERSION=1.03
8 8
inherit perl-module
9 9

  
10 10
DESCRIPTION="Perl interface to GnuPG"
11 11

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

  
17 15
RDEPEND="
18 16
	>=app-crypt/gnupg-1.4
......
22 20
	>=dev-perl/MooX-HandlesVia-0.1.4
23 21
	>=dev-perl/MooX-late-0.14.0
24 22
"
25
BDEPEND="${RDEPEND}
23
BDEPEND="
24
	${RDEPEND}
26 25
	>=virtual/perl-ExtUtils-MakeMaker-6.360.0
27 26
"
28 27

  
29 28
src_test() {
30
# Nearly all tests succeed with this patchset and GnuPG 2.1 when running outside the
31
# emerge sandbox. However, the agent architecture is not really sandbox-friendly, so...
32
#
33
# Test Summary Report
34
# -------------------
35
# t/decrypt.t              (Wstat: 0 Tests: 6 Failed: 2)
36
#  Failed tests:  5-6
37
# Failed 1/22 test programs. 2/56 subtests failed.
38
	perl_rm_files t/decrypt.t
39
# Needs to run a setup test that spawns a persistent daemon
29
	# Nearly all tests succeed with this patchset and GnuPG 2.1 when running outside the
30
	# emerge sandbox. However, the agent architecture is not really sandbox-friendly, so...
31
	#
32
	# Test Summary Report
33
	# -------------------
34
	# t/decrypt.t              (Wstat: 0 Tests: 6 Failed: 2)
35
	#  Failed tests:  5-6
36
	# Failed 1/22 test programs. 2/56 subtests failed.
37
	#perl_rm_files t/decrypt.t
38

  
39
	# Needs to run a setup test that spawns a persistent daemon
40 40
	DIST_TEST="do"
41 41
	perl-module_src_test
42 42
}
Thank you!