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/Test-Deep/
Date: Fri, 31 Mar 2017 11:29:20
Message-Id: 1490959746.37ac41a82625b51fc96839e02c3052d8d61a7f86.kentnl@gentoo
1 commit: 37ac41a82625b51fc96839e02c3052d8d61a7f86
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 31 11:28:48 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 31 11:29:06 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37ac41a8
7
8 dev-perl/Test-Deep: Bump to version 1.126.0
9
10 Upstream:
11 - documentation improvements
12 - more careful guard of $@
13 - Add control var ::LeafWrapper
14 - Advoid relying on '.' in @INC in tests
15 - Include stringified result of failed overloaded re match in diag
16 - Don't warn when array_each() compares to nonref
17 - objects on "expected" side with a 'as_test_deep_cmp' method
18 can compare against that methods return instead of the object
19 - class_base routine removed
20
21 Bug: https://bugs.gentoo.org/614340
22 Package-Manager: Portage-2.3.4, Repoman-2.3.2
23
24 dev-perl/Test-Deep/Manifest | 1 +
25 dev-perl/Test-Deep/Test-Deep-1.126.0.ebuild | 36 +++++++++++++++++++++++++++++
26 2 files changed, 37 insertions(+)
27
28 diff --git a/dev-perl/Test-Deep/Manifest b/dev-perl/Test-Deep/Manifest
29 index 9e58452b48c..630e209f3d1 100644
30 --- a/dev-perl/Test-Deep/Manifest
31 +++ b/dev-perl/Test-Deep/Manifest
32 @@ -1 +1,2 @@
33 DIST Test-Deep-1.120.tar.gz 38973 SHA256 207ef8ea71291e5cf8258d1a4d98d360b9b5870989d187b3e2ff3c0fb201becd SHA512 8511a3070db440b8bde3c58c2c3f9cfe81900c96e27c474d7f21c1bdcc7846b7d7bb11a3c32dabe1183957c98f0bece0442cf9874514fbe3893c88919fd35b54 WHIRLPOOL 3fd67eae99e04c42bbc5c6abea3911a56c4e816f5041d5fd87acd3032b0e8253bf927a175ef13d65de28a5515afecb2817224451a55f9bc6be1da204337bb04e
34 +DIST Test-Deep-1.126.tar.gz 41285 SHA256 159b42451e4018d9da97994f4ac46d5166abf9b6f343db30071c8fd1cfe0c7c2 SHA512 e4667a3294a6a9d4b2a35e1c6dcc2b52db92589f3060e69fc7d4a4cad604dd2484341156b2cfeabdb4f70b777b687297be93b84a33838eb9622b734569ae9b33 WHIRLPOOL 7d9222e59d5e11dc3e0c9574c712176da407787050308a24491b808c3b90463c2696ce5251518612bfc7c40161129b130ae58e3c35fee0ad6dc0c1ded4bc0da7
35
36 diff --git a/dev-perl/Test-Deep/Test-Deep-1.126.0.ebuild b/dev-perl/Test-Deep/Test-Deep-1.126.0.ebuild
37 new file mode 100644
38 index 00000000000..fe2ec999e4b
39 --- /dev/null
40 +++ b/dev-perl/Test-Deep/Test-Deep-1.126.0.ebuild
41 @@ -0,0 +1,36 @@
42 +# Copyright 1999-2017 Gentoo Foundation
43 +# Distributed under the terms of the GNU General Public License v2
44 +
45 +EAPI=6
46 +
47 +DIST_AUTHOR=RJBS
48 +DIST_VERSION=1.126
49 +inherit perl-module
50 +
51 +DESCRIPTION="Extremely flexible deep comparison testing"
52 +
53 +SLOT="0"
54 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
55 +IUSE="test"
56 +
57 +RDEPEND="
58 + >=virtual/perl-Scalar-List-Utils-1.90.0
59 + virtual/perl-Test-Simple
60 +"
61 +DEPEND="${RDEPEND}
62 + virtual/perl-ExtUtils-MakeMaker
63 + test? (
64 + >=virtual/perl-Test-Simple-0.880.0
65 + )
66 +"
67 +
68 +src_test() {
69 + # Bug 584238 Avoidance
70 + if perl -e 'exit ( eval { require Test::Tester; Test::Tester->VERSION(0.04); 1 } ? 0 : 1 )'; then
71 + perl-module_src_test
72 + else
73 + einfo "Test phase skipped: Test::Tester required for tests"
74 + einfo "Please upgrade to >=dev-lang/perl-5.22.0 or >=virtual/perl-Test-Simple-1.1.10"
75 + einfo "if you want this tested"
76 + fi
77 +}