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/Color-Calc/
Date: Tue, 12 Oct 2021 20:18:13
Message-Id: 1634069335.4d9784879649691cbefc98d7d1ea358173687167.dilfridge@gentoo
1 commit: 4d9784879649691cbefc98d7d1ea358173687167
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 12 20:08:55 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 12 20:08:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d978487
7
8 dev-perl/Color-Calc: EAPI=8 bump, add missing dependency
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/Color-Calc/Color-Calc-1.74.0-r1.ebuild | 32 +++++++++++++++++++++++++
14 1 file changed, 32 insertions(+)
15
16 diff --git a/dev-perl/Color-Calc/Color-Calc-1.74.0-r1.ebuild b/dev-perl/Color-Calc/Color-Calc-1.74.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..6e5cb94b1bf
19 --- /dev/null
20 +++ b/dev-perl/Color-Calc/Color-Calc-1.74.0-r1.ebuild
21 @@ -0,0 +1,32 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +DIST_AUTHOR=CFAERBER
28 +DIST_VERSION=1.074
29 +DIST_EXAMPLES=("eg/*")
30 +inherit perl-module
31 +
32 +DESCRIPTION="Simple calculations with RGB colors"
33 +
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="minimal"
37 +
38 +RDEPEND="
39 + >=dev-perl/Graphics-ColorNames-2.100.0
40 + dev-perl/Graphics-ColorNames-HTML
41 + >=dev-perl/Graphics-ColorNames-WWW-0.10.0
42 + !minimal? ( >=dev-perl/Graphics-ColorObject-0.5.0 )
43 + >=dev-perl/Params-Validate-0.750.0
44 +"
45 +BDEPEND="${RDEPEND}
46 + >=dev-perl/Module-Build-0.420.0
47 + test? (
48 + virtual/perl-Test-Simple
49 + dev-perl/Test-NoWarnings
50 + )
51 +"
52 +
53 +PERL_RM_FILES=( t/10pod.t t/11pod_cover.t )