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/AppConfig/
Date: Tue, 28 Apr 2020 12:45:19
Message-Id: 1588077903.6bb028fc50d39c86f8cbb9a8e58432ed11b471fd.kentnl@gentoo
1 commit: 6bb028fc50d39c86f8cbb9a8e58432ed11b471fd
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 28 12:43:06 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 28 12:45:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bb028fc
7
8 dev-perl/AppConfig: -r bump for EAPI7
9
10 - EAPI7
11 - Parallel Tests
12
13 Package-Manager: Portage-2.3.97, Repoman-2.3.22
14 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
15
16 dev-perl/AppConfig/AppConfig-1.710.0-r1.ebuild | 29 ++++++++++++++++++++++++++
17 1 file changed, 29 insertions(+)
18
19 diff --git a/dev-perl/AppConfig/AppConfig-1.710.0-r1.ebuild b/dev-perl/AppConfig/AppConfig-1.710.0-r1.ebuild
20 new file mode 100644
21 index 00000000000..a18c4e1b526
22 --- /dev/null
23 +++ b/dev-perl/AppConfig/AppConfig-1.710.0-r1.ebuild
24 @@ -0,0 +1,29 @@
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=NEILB
31 +DIST_VERSION=1.71
32 +inherit perl-module
33 +
34 +DESCRIPTION="Perl5 module for reading configuration files and parsing command line arguments"
35 +
36 +SLOT="0"
37 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
38 +IUSE="test"
39 +RESTRICT="!test? ( test )"
40 +
41 +RDEPEND="
42 + >=dev-perl/File-HomeDir-0.57
43 +"
44 +BDEPEND="${RDEPEND}
45 + virtual/perl-ExtUtils-MakeMaker
46 + test? (
47 + virtual/perl-Test-Simple
48 + )
49 +"
50 +src_test() {
51 + perl_rm_files t/97-pod.t t/99_author.t
52 + perl-module_src_test
53 +}