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/B-Utils/
Date: Tue, 05 May 2020 15:06:11
Message-Id: 1588691150.56dbb5e1a377483fb555bfc06e12c3df8acc444f.kentnl@gentoo
1 commit: 56dbb5e1a377483fb555bfc06e12c3df8acc444f
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 5 14:56:25 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue May 5 15:05:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56dbb5e1
7
8 dev-perl/B-Utils: -r bump for EAPI7
9
10 - EAPI7
11 - Strip useless tests that merely clutter test output
12
13 Package-Manager: Portage-2.3.99, Repoman-2.3.22
14 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
15
16 dev-perl/B-Utils/B-Utils-0.270.0-r1.ebuild | 35 ++++++++++++++++++++++++++++++
17 1 file changed, 35 insertions(+)
18
19 diff --git a/dev-perl/B-Utils/B-Utils-0.270.0-r1.ebuild b/dev-perl/B-Utils/B-Utils-0.270.0-r1.ebuild
20 new file mode 100644
21 index 00000000000..1c81544834e
22 --- /dev/null
23 +++ b/dev-perl/B-Utils/B-Utils-0.270.0-r1.ebuild
24 @@ -0,0 +1,35 @@
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=ETHER
31 +DIST_VERSION=0.27
32 +inherit perl-module
33 +
34 +DESCRIPTION="Helper functions for op tree manipulation"
35 +
36 +SLOT="0"
37 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
38 +IUSE="test"
39 +RESTRICT="!test? ( test )"
40 +
41 +# needs Scalar::Util
42 +RDEPEND="
43 + virtual/perl-Exporter
44 + virtual/perl-Scalar-List-Utils
45 + dev-perl/Task-Weaken
46 +"
47 +BDEPEND="${RDEPEND}
48 + virtual/perl-ExtUtils-CBuilder
49 + >=dev-perl/ExtUtils-Depends-0.301.0
50 + test? (
51 + virtual/perl-Test-Simple
52 + )
53 +"
54 +PERL_RM_FILES=(
55 + # These useless no-op tests that simply clutter test output
56 + t/utils/{31oldname,32kids,33ancestors,34descendants,35siblings,36previous,37stringify}.t
57 + t/utils/{41walkfilt,42all,43allfilt,44optrep}.t
58 + t/utils/{50carp,51croak}.t
59 +)