Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Exception-Warning/
Date: Wed, 19 Aug 2020 04:41:39
Message-Id: 1597812073.d858d783498cc328eef71741bd4c2784af06ee24.kentnl@gentoo
1 commit: d858d783498cc328eef71741bd4c2784af06ee24
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 19 04:40:44 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 19 04:41:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d858d783
7
8 dev-perl/Exception-Warning: -r bump for EAPI7 + fixes
9
10 - EAPI7
11 - Add USE="examples"
12 - Improve deps
13 - Parallel tests
14
15 Package-Manager: Portage-2.3.103, Repoman-2.3.22
16 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
17
18 .../Exception-Warning-0.40.100-r2.ebuild | 29 ++++++++++++++++++++++
19 1 file changed, 29 insertions(+)
20
21 diff --git a/dev-perl/Exception-Warning/Exception-Warning-0.40.100-r2.ebuild b/dev-perl/Exception-Warning/Exception-Warning-0.40.100-r2.ebuild
22 new file mode 100644
23 index 00000000000..4efdc3607e7
24 --- /dev/null
25 +++ b/dev-perl/Exception-Warning/Exception-Warning-0.40.100-r2.ebuild
26 @@ -0,0 +1,29 @@
27 +# Copyright 1999-2020 Gentoo Authors
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +EAPI=7
31 +
32 +DIST_AUTHOR=DEXTER
33 +DIST_VERSION=0.0401
34 +DIST_EXAMPLES=("eg/*")
35 +inherit perl-module
36 +
37 +DESCRIPTION="Convert simple warn into real exception object"
38 +
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE="test"
42 +RESTRICT="!test? ( test )"
43 +
44 +RDEPEND="
45 + >=dev-perl/Exception-Base-0.210.0
46 +"
47 +DEPEND="dev-perl/Module-Build"
48 +BDEPEND="${RDEPEND}
49 + dev-perl/Module-Build
50 + test? (
51 + >=dev-perl/Test-Assert-0.50.0
52 + >=dev-perl/Test-Unit-Lite-0.120.0
53 + virtual/perl-parent
54 + )
55 +"