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/boolean/
Date: Sat, 09 Oct 2021 15:54:27
Message-Id: 1633794848.1dd86239514fa634274ebaefc379ab95bacc7a4f.dilfridge@gentoo
1 commit: 1dd86239514fa634274ebaefc379ab95bacc7a4f
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 9 15:49:05 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 9 15:54:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dd86239
7
8 dev-perl/boolean: EAPI=8 bump
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 dev-perl/boolean/boolean-0.460.0-r1.ebuild | 24 ++++++++++++++++++++++++
14 dev-perl/boolean/boolean-0.460.0.ebuild | 28 ----------------------------
15 2 files changed, 24 insertions(+), 28 deletions(-)
16
17 diff --git a/dev-perl/boolean/boolean-0.460.0-r1.ebuild b/dev-perl/boolean/boolean-0.460.0-r1.ebuild
18 new file mode 100644
19 index 00000000000..67abe487f03
20 --- /dev/null
21 +++ b/dev-perl/boolean/boolean-0.460.0-r1.ebuild
22 @@ -0,0 +1,24 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=8
27 +
28 +DIST_AUTHOR=INGY
29 +DIST_VERSION=0.46
30 +inherit perl-module
31 +
32 +DESCRIPTION="Boolean support for Perl"
33 +
34 +SLOT="0"
35 +KEYWORDS="amd64 x86"
36 +
37 +RDEPEND=""
38 +BDEPEND="${RDEPEND}
39 + virtual/perl-ExtUtils-MakeMaker
40 + test? ( dev-perl/JSON-MaybeXS )
41 +"
42 +
43 +src_test() {
44 + perl_rm_files t/author-pod-syntax.t
45 + perl-module_src_test
46 +}
47
48 diff --git a/dev-perl/boolean/boolean-0.460.0.ebuild b/dev-perl/boolean/boolean-0.460.0.ebuild
49 deleted file mode 100644
50 index 83d189f3cc1..00000000000
51 --- a/dev-perl/boolean/boolean-0.460.0.ebuild
52 +++ /dev/null
53 @@ -1,28 +0,0 @@
54 -# Copyright 1999-2019 Gentoo Authors
55 -# Distributed under the terms of the GNU General Public License v2
56 -
57 -EAPI=6
58 -
59 -DIST_AUTHOR=INGY
60 -DIST_VERSION=0.46
61 -inherit perl-module
62 -
63 -DESCRIPTION="Boolean support for Perl"
64 -
65 -SLOT="0"
66 -KEYWORDS="amd64 x86"
67 -IUSE="test"
68 -RESTRICT="!test? ( test )"
69 -
70 -RDEPEND=""
71 -DEPEND="${RDEPEND}
72 - virtual/perl-ExtUtils-MakeMaker
73 -"
74 -src_test() {
75 - elog "Install the following dependencies for comprehensive tests:"
76 - local i="$(if has_version 'dev-perl/JSON-MaybeXS'; then echo '[I]'; else echo '[ ]'; fi)"
77 - elog " $i dev-perl/JSON-MaybeXS - Interop testing with native C JSON Decoders";
78 - echo
79 - perl_rm_files t/author-pod-syntax.t
80 - perl-module_src_test
81 -}