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/Class-Factory-Util/
Date: Wed, 18 Oct 2017 21:39:17
Message-Id: 1508362746.355f061eefe51795d9a47c66352fe9ab8c62e992.kentnl@gentoo
1 commit: 355f061eefe51795d9a47c66352fe9ab8c62e992
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 18 21:15:38 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 18 21:39:06 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=355f061e
7
8 dev-perl/Class-Factory-Util: EAPI6 + Tests
9
10 - EAPI6
11 - Enable tests
12 - Cleanup author tests
13
14 Package-Manager: Portage-2.3.8, Repoman-2.3.3
15
16 .../Class-Factory-Util-1.700.0-r2.ebuild | 23 ++++++++++++++++++++++
17 1 file changed, 23 insertions(+)
18
19 diff --git a/dev-perl/Class-Factory-Util/Class-Factory-Util-1.700.0-r2.ebuild b/dev-perl/Class-Factory-Util/Class-Factory-Util-1.700.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..4b2ae30e3d7
22 --- /dev/null
23 +++ b/dev-perl/Class-Factory-Util/Class-Factory-Util-1.700.0-r2.ebuild
24 @@ -0,0 +1,23 @@
25 +# Copyright 1999-2017 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=6
29 +
30 +DIST_AUTHOR=DROLSKY
31 +DIST_VERSION=1.7
32 +inherit perl-module
33 +
34 +DESCRIPTION="Provide utility methods for factory classes"
35 +
36 +SLOT="0"
37 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-solaris"
38 +IUSE=""
39 +
40 +RDEPEND=""
41 +DEPEND="${RDEPEND}
42 + >=dev-perl/Module-Build-0.28"
43 +
44 +src_test() {
45 + perl_rm_files t/pod{,-coverage}.t
46 + perl-module_src_test
47 +}