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/POE-Component-IKC/
Date: Sat, 31 Jul 2021 19:43:30
Message-Id: 1627760568.7c02c026e2c4d59ee19ba660df4494b72aee0491.dilfridge@gentoo
1 commit: 7c02c026e2c4d59ee19ba660df4494b72aee0491
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 31 19:27:07 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 31 19:42:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c02c026
7
8 dev-perl/POE-Component-IKC: 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 ....ebuild => POE-Component-IKC-0.240.200-r1.ebuild} | 20 ++++++--------------
14 1 file changed, 6 insertions(+), 14 deletions(-)
15
16 diff --git a/dev-perl/POE-Component-IKC/POE-Component-IKC-0.240.200.ebuild b/dev-perl/POE-Component-IKC/POE-Component-IKC-0.240.200-r1.ebuild
17 similarity index 62%
18 rename from dev-perl/POE-Component-IKC/POE-Component-IKC-0.240.200.ebuild
19 rename to dev-perl/POE-Component-IKC/POE-Component-IKC-0.240.200-r1.ebuild
20 index 64c3743451c..6f50bb38fe4 100644
21 --- a/dev-perl/POE-Component-IKC/POE-Component-IKC-0.240.200.ebuild
22 +++ b/dev-perl/POE-Component-IKC/POE-Component-IKC-0.240.200-r1.ebuild
23 @@ -1,18 +1,18 @@
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=GWYN
32 DIST_VERSION=0.2402
33 +DIST_EXAMPLES=( "eg/*" )
34 inherit perl-module
35
36 DESCRIPTION="Inter-Kernel Communication for POE"
37
38 SLOT="0"
39 KEYWORDS="~amd64 ~x86"
40 -IUSE="test examples"
41 -RESTRICT="!test? ( test )"
42 +IUSE="examples"
43
44 RDEPEND="
45 >=dev-perl/Data-Dump-1.0.0
46 @@ -20,22 +20,14 @@ RDEPEND="
47 >=dev-perl/POE-1.311.0
48 >=virtual/perl-Scalar-List-Utils-1.0.0
49 "
50 -DEPEND="${RDEPEND}
51 +BDEPEND="${RDEPEND}
52 virtual/perl-ExtUtils-MakeMaker
53 test? ( >=virtual/perl-Test-Simple-0.600.0 )
54 "
55
56 -src_test() {
57 - perl_rm_files t/01_pod.t t/02_pod_coverage.t
58 - perl-module_src_test
59 -}
60 +PERL_RM_FILES=( t/01_pod.t t/02_pod_coverage.t )
61
62 src_install() {
63 perl-module_src_install
64 dodoc FUTUR ikc-architecture.txt
65 - if use examples; then
66 - docompress -x /usr/share/doc/${PF}/examples
67 - docinto examples
68 - dodoc -r eg/*
69 - fi
70 }