Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Proc-Simple/
Date: Sat, 31 Jul 2021 21:54:53
Message-Id: 1627768465.e732db9c05646fcb46dd6129146e104186245d81.dilfridge@gentoo
1 commit: e732db9c05646fcb46dd6129146e104186245d81
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 31 21:44:23 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 31 21:54:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e732db9c
7
8 dev-perl/Proc-Simple: EAPI=8 bump
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 ...le-1.320.0.ebuild => Proc-Simple-1.320.0-r1.ebuild} | 18 ++++--------------
14 1 file changed, 4 insertions(+), 14 deletions(-)
15
16 diff --git a/dev-perl/Proc-Simple/Proc-Simple-1.320.0.ebuild b/dev-perl/Proc-Simple/Proc-Simple-1.320.0-r1.ebuild
17 similarity index 55%
18 rename from dev-perl/Proc-Simple/Proc-Simple-1.320.0.ebuild
19 rename to dev-perl/Proc-Simple/Proc-Simple-1.320.0-r1.ebuild
20 index 4c67f8f4512..107440849a6 100644
21 --- a/dev-perl/Proc-Simple/Proc-Simple-1.320.0.ebuild
22 +++ b/dev-perl/Proc-Simple/Proc-Simple-1.320.0-r1.ebuild
23 @@ -1,30 +1,20 @@
24 -# Copyright 1999-2019 Gentoo Authors
25 +# Copyright 1999-2021 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=6
29 +EAPI=8
30
31 DIST_AUTHOR=MSCHILLI
32 DIST_VERSION=1.32
33 +DIST_EXAMPLES=( "eg/*" )
34 inherit perl-module
35
36 DESCRIPTION="Launch and control background processes"
37
38 SLOT="0"
39 KEYWORDS="amd64 ppc x86"
40 -IUSE="test examples"
41 -RESTRICT="!test? ( test )"
42
43 RDEPEND="virtual/perl-IO"
44 -DEPEND="
45 +BDEPEND="
46 virtual/perl-ExtUtils-MakeMaker
47 test? ( virtual/perl-Test-Simple )
48 "
49 -
50 -src_install() {
51 - perl-module_src_install
52 - if use examples; then
53 - docompress -x /usr/share/doc/${PF}/examples
54 - docinto examples
55 - dodoc -r eg/*
56 - fi
57 -}