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/Devel-Refactor/
Date: Thu, 30 Jul 2020 08:46:05
Message-Id: 1596098740.f51510c253667595c059732e4554e01eb03a0773.kentnl@gentoo
1 commit: f51510c253667595c059732e4554e01eb03a0773
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 08:45:02 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 08:45:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f51510c2
7
8 dev-perl/Devel-Refactor: -r bump for EAPI7
9
10 - EAPI7
11 - Add USE="examples"
12 - Parallel tests
13 - Improve deps
14
15 Package-Manager: Portage-2.3.103, Repoman-2.3.22
16 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
17
18 .../Devel-Refactor/Devel-Refactor-0.50.0-r2.ebuild | 25 ++++++++++++++++++++++
19 1 file changed, 25 insertions(+)
20
21 diff --git a/dev-perl/Devel-Refactor/Devel-Refactor-0.50.0-r2.ebuild b/dev-perl/Devel-Refactor/Devel-Refactor-0.50.0-r2.ebuild
22 new file mode 100644
23 index 00000000000..68ff05e7fbf
24 --- /dev/null
25 +++ b/dev-perl/Devel-Refactor/Devel-Refactor-0.50.0-r2.ebuild
26 @@ -0,0 +1,25 @@
27 +# Copyright 1999-2020 Gentoo Authors
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +EAPI=7
31 +
32 +DIST_AUTHOR=SSOTKA
33 +DIST_VERSION=0.05
34 +DIST_EXAMPLES=("examples/*")
35 +inherit perl-module
36 +
37 +DESCRIPTION="Perl extension for refactoring Perl code"
38 +
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE="test"
42 +RESTRICT="!test? ( test )"
43 +
44 +BDEPEND="
45 + test? (
46 + >=virtual/perl-Test-Simple-0.470.0
47 + )
48 +"
49 +PATCHES=(
50 + "${FILESDIR}/${PN}-0.50.0-perl526.patch"
51 +)