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-Base/
Date: Fri, 14 Aug 2020 18:58:20
Message-Id: 1597431477.38e9b0ca2db8509a8eca4f9f695705d26b1366d6.kentnl@gentoo
1 commit: 38e9b0ca2db8509a8eca4f9f695705d26b1366d6
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 14 18:57:57 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 14 18:57:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38e9b0ca
7
8 dev-perl/Exception-Base: -r bump for EAPI7 + minor fixes
9
10 - EAPI7
11 - Move unconditional examples installation to USE="examples"
12
13 Package-Manager: Portage-2.3.103, Repoman-2.3.22
14 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
15
16 .../Exception-Base-0.250.100-r1.ebuild | 24 ++++++++++++++++++++++
17 1 file changed, 24 insertions(+)
18
19 diff --git a/dev-perl/Exception-Base/Exception-Base-0.250.100-r1.ebuild b/dev-perl/Exception-Base/Exception-Base-0.250.100-r1.ebuild
20 new file mode 100644
21 index 00000000000..68e7705249c
22 --- /dev/null
23 +++ b/dev-perl/Exception-Base/Exception-Base-0.250.100-r1.ebuild
24 @@ -0,0 +1,24 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +
30 +DIST_AUTHOR=DEXTER
31 +DIST_VERSION=0.2501
32 +DIST_EXAMPLES=("examples/*")
33 +inherit perl-module
34 +
35 +DESCRIPTION="Error handling with exception class"
36 +
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +IUSE="test"
40 +RESTRICT="!test? ( test )"
41 +
42 +DEPEND="dev-perl/Module-Build"
43 +BDEPEND="
44 + dev-perl/Module-Build
45 + test? (
46 + >=dev-perl/Test-Unit-Lite-0.120.0
47 + )
48 +"