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-System/
Date: Fri, 14 Aug 2020 20:06:21
Message-Id: 1597435565.d3f2db8d6c8a5aab47ac7a3e79ee3913c89365e6.kentnl@gentoo
1 commit: d3f2db8d6c8a5aab47ac7a3e79ee3913c89365e6
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 14 19:27:23 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 14 20:06:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f2db8d
7
8 dev-perl/Exception-System: -r bump for EAPI7 + fixes
9
10 - EAPI7
11 - Add USE="examples"
12 - Unconditionally remove bad tests
13
14 Package-Manager: Portage-2.3.103, Repoman-2.3.22
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 .../Exception-System-0.110.0-r2.ebuild | 33 ++++++++++++++++++++++
18 1 file changed, 33 insertions(+)
19
20 diff --git a/dev-perl/Exception-System/Exception-System-0.110.0-r2.ebuild b/dev-perl/Exception-System/Exception-System-0.110.0-r2.ebuild
21 new file mode 100644
22 index 00000000000..61493e0f475
23 --- /dev/null
24 +++ b/dev-perl/Exception-System/Exception-System-0.110.0-r2.ebuild
25 @@ -0,0 +1,33 @@
26 +# Copyright 1999-2020 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=7
30 +
31 +DIST_AUTHOR=DEXTER
32 +DIST_VERSION=0.11
33 +DIST_EXAMPLES=("eg/*")
34 +inherit perl-module
35 +
36 +DESCRIPTION="Exception class for system or library calls"
37 +
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86"
40 +IUSE="test"
41 +RESTRICT="!test? ( test )"
42 +
43 +RDEPEND="
44 + >=dev-perl/Exception-Base-0.22.01
45 +"
46 +DEPEND="
47 + dev-perl/Module-Build
48 +"
49 +BDEPEND="${RDEPEND}
50 + dev-perl/Module-Build
51 + test? (
52 + >=dev-perl/Test-Unit-Lite-0.100.0
53 + )
54 +"
55 +PERL_RM_FILES=(
56 + "t/pod_coverage.t"
57 + "t/pod.t"
58 +)