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-Data-Inheritable/
Date: Wed, 18 Oct 2017 21:39:17
Message-Id: 1508362745.cd2ddb6e6bd6c7fb6cf02ea658a902654aec9e8f.kentnl@gentoo
1 commit: cd2ddb6e6bd6c7fb6cf02ea658a902654aec9e8f
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 18 21:12:17 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 18 21:39:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd2ddb6e
7
8 dev-perl/Class-Data-Inheritable: EAPI6 + Fix Tests
9
10 - EAPI6
11 - Enable tests
12 - Cleanup authortests
13
14 Package-Manager: Portage-2.3.8, Repoman-2.3.3
15
16 .../Class-Data-Inheritable-0.80.0-r2.ebuild | 21 +++++++++++++++++++++
17 1 file changed, 21 insertions(+)
18
19 diff --git a/dev-perl/Class-Data-Inheritable/Class-Data-Inheritable-0.80.0-r2.ebuild b/dev-perl/Class-Data-Inheritable/Class-Data-Inheritable-0.80.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..445f47db0c6
22 --- /dev/null
23 +++ b/dev-perl/Class-Data-Inheritable/Class-Data-Inheritable-0.80.0-r2.ebuild
24 @@ -0,0 +1,21 @@
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=TMTM
31 +DIST_VERSION=0.08
32 +inherit perl-module
33 +
34 +DESCRIPTION="Inheritable, overridable class data"
35 +
36 +SLOT="0"
37 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
38 +IUSE=""
39 +
40 +export OPTIMIZE="${CFLAGS}"
41 +
42 +src_test() {
43 + perl_rm_files t/pod{,-coverage}.t
44 + perl-module_src_test
45 +}