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/Math-ModInt/
Date: Fri, 02 Jul 2021 20:44:07
Message-Id: 1625258611.a49b5e0e2025521d3653ea7458f74b98828a15a3.dilfridge@gentoo
1 commit: a49b5e0e2025521d3653ea7458f74b98828a15a3
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 2 20:24:48 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 2 20:43:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a49b5e0e
7
8 dev-perl/Math-ModInt: Version bump 0.013
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 dev-perl/Math-ModInt/Manifest | 1 +
14 dev-perl/Math-ModInt/Math-ModInt-0.13.0.ebuild | 42 ++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/dev-perl/Math-ModInt/Manifest b/dev-perl/Math-ModInt/Manifest
18 index 138c92309ed..92e6052121f 100644
19 --- a/dev-perl/Math-ModInt/Manifest
20 +++ b/dev-perl/Math-ModInt/Manifest
21 @@ -1 +1,2 @@
22 DIST Math-ModInt-0.011.tar.gz 40189 BLAKE2B 2b49dec27c7f67ab0c5005a850df9105d661aaa07fbb4041f9bb79bca621114edd6d541ef62d907e8fdc71d1879fb3eb522af232519cd0500b9d41fb2c1b6938 SHA512 c6a1b90e07dc6a4b620b0db63eaa205dad19ba3c96e8031f93d1c3fca137d5430e3c1e88d3bad9d3f6d64600bee4deb9c13e13fdad410c76f9c10732fd2495e0
23 +DIST Math-ModInt-0.013.tar.gz 53006 BLAKE2B 0889bfd9acd6e63b38ac20ef176580c0002db441e045f8298dd5c3b9d76471708f0b2955d137adfd93ba2315ee9d85040e0a1bac01d6a91a58b970842468b49b SHA512 ec69a8f0bcddae3175bf7b3f495697c0b33160db1bf8d71d7828d36065ade6bce2b1ddc135b3d09aaa590e550dc25ed2ae61731efb88a1a9b7582826dabca858
24
25 diff --git a/dev-perl/Math-ModInt/Math-ModInt-0.13.0.ebuild b/dev-perl/Math-ModInt/Math-ModInt-0.13.0.ebuild
26 new file mode 100644
27 index 00000000000..8eab610896d
28 --- /dev/null
29 +++ b/dev-perl/Math-ModInt/Math-ModInt-0.13.0.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DIST_AUTHOR=MHASCH
37 +DIST_VERSION=0.013
38 +
39 +inherit perl-module
40 +
41 +DESCRIPTION="modular integer arithmetic"
42 +
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="minimal"
46 +LICENSE="Artistic-2"
47 +
48 +PERL_RM_FILES=(
49 + "t/90_pod.t"
50 + "t/91_pod_cover_cp.t"
51 + "t/92_consistency.t"
52 + "t/93_examples.t"
53 + "t/95_versions.t"
54 + "t/99_signature.t"
55 +)
56 +
57 +RDEPEND="
58 + virtual/perl-Carp
59 + >=virtual/perl-Math-BigInt-1.991.0
60 + !minimal? (
61 + dev-perl/Math-BigInt-GMP
62 + virtual/perl-Math-BigRat
63 + )
64 +"
65 +BDEPEND="${RDEPEND}
66 + >=virtual/perl-ExtUtils-MakeMaker-6.640.0
67 + test? (
68 + virtual/perl-Scalar-List-Utils
69 + virtual/perl-Test
70 + virtual/perl-Test-Simple
71 + )
72 +"