Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-ModInt/
Date: Sun, 28 Feb 2016 10:01:58
Message-Id: 1456562396.fc8a0bdd8f691090d830542c8b7e019af09a8279.monsieurp@gentoo
1 commit: fc8a0bdd8f691090d830542c8b7e019af09a8279
2 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 22 07:57:16 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 08:39:56 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc8a0bdd
7
8 dev-perl/Math-ModInt: Bump to version 0.11.0
9
10 - EAPI
11 - Fixup license
12 - Cleanup tests
13
14 Package-Manager: portage-2.2.27
15
16 dev-perl/Math-ModInt/Manifest | 1 +
17 dev-perl/Math-ModInt/Math-ModInt-0.11.0.ebuild | 41 ++++++++++++++++++++++++++
18 2 files changed, 42 insertions(+)
19
20 diff --git a/dev-perl/Math-ModInt/Manifest b/dev-perl/Math-ModInt/Manifest
21 index 67d872a..23fe0a2 100644
22 --- a/dev-perl/Math-ModInt/Manifest
23 +++ b/dev-perl/Math-ModInt/Manifest
24 @@ -1 +1,2 @@
25 DIST Math-ModInt-0.007.tar.gz 37509 SHA256 961744ac23539c04e29e245ce5e2f1abdd4354b9afc6833c4f4893aa412115dd SHA512 84789d48b55e130541e6564ccde95f45da3d8553da7c5cef073d1068910a72d33da1ac2ce3dc22a8cff868dfee62f35416a44bee5773be74eccccce96548b8e5 WHIRLPOOL e7481c54207755f1657a5adaf39b77e4eabea30414d80b5b13f1d7901cd11617043ba13ff21944052c0441df97d0b629da725754cdada7a1c4a4f77df8a4fea6
26 +DIST Math-ModInt-0.011.tar.gz 40189 SHA256 a19eb1deca4903de50c7214898105e9cab46475c97182da2cddb9ff083301ed7 SHA512 c6a1b90e07dc6a4b620b0db63eaa205dad19ba3c96e8031f93d1c3fca137d5430e3c1e88d3bad9d3f6d64600bee4deb9c13e13fdad410c76f9c10732fd2495e0 WHIRLPOOL 1d1e9fd222fb1f539b9563b5400b6c1898a5fdbe6604ef167438df4efa2ce92a61c3b3defb3918e3a0e446001e4b36c2cb29c62553e5936caad86081100741bc
27
28 diff --git a/dev-perl/Math-ModInt/Math-ModInt-0.11.0.ebuild b/dev-perl/Math-ModInt/Math-ModInt-0.11.0.ebuild
29 new file mode 100644
30 index 0000000..8c24eae
31 --- /dev/null
32 +++ b/dev-perl/Math-ModInt/Math-ModInt-0.11.0.ebuild
33 @@ -0,0 +1,41 @@
34 +# Copyright 1999-2016 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +# $Id$
37 +
38 +EAPI=6
39 +
40 +DIST_AUTHOR=MHASCH
41 +DIST_VERSION=0.011
42 +
43 +inherit perl-module
44 +
45 +DESCRIPTION="modular integer arithmetic"
46 +
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +IUSE="minimal test"
50 +
51 +PERL_RM_FILES=(
52 + "t/90_pod.t"
53 + "t/91_pod_cover_cp.t"
54 + "t/92_consistency.t"
55 + "t/93_examples.t"
56 + "t/95_versions.t"
57 + "t/99_signature.t"
58 +)
59 +RDEPEND="
60 + virtual/perl-Carp
61 + >=virtual/perl-Math-BigInt-1.991.0
62 + !minimal? (
63 + dev-perl/Math-BigInt-GMP
64 + virtual/perl-Math-BigRat
65 + )
66 +"
67 +DEPEND="${RDEPEND}
68 + virtual/perl-ExtUtils-MakeMaker
69 + test? (
70 + virtual/perl-Scalar-List-Utils
71 + virtual/perl-Test
72 + virtual/perl-Test-Simple
73 + )
74 +"