forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-perl/Math-ModInt: Bump to version 0.11.0
- EAPI - Fixup license - Cleanup tests Package-Manager: portage-2.2.27
- Loading branch information
1 parent
98c8419
commit fc8a0bd
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST Math-ModInt-0.007.tar.gz 37509 SHA256 961744ac23539c04e29e245ce5e2f1abdd4354b9afc6833c4f4893aa412115dd SHA512 84789d48b55e130541e6564ccde95f45da3d8553da7c5cef073d1068910a72d33da1ac2ce3dc22a8cff868dfee62f35416a44bee5773be74eccccce96548b8e5 WHIRLPOOL e7481c54207755f1657a5adaf39b77e4eabea30414d80b5b13f1d7901cd11617043ba13ff21944052c0441df97d0b629da725754cdada7a1c4a4f77df8a4fea6 | ||
DIST Math-ModInt-0.011.tar.gz 40189 SHA256 a19eb1deca4903de50c7214898105e9cab46475c97182da2cddb9ff083301ed7 SHA512 c6a1b90e07dc6a4b620b0db63eaa205dad19ba3c96e8031f93d1c3fca137d5430e3c1e88d3bad9d3f6d64600bee4deb9c13e13fdad410c76f9c10732fd2495e0 WHIRLPOOL 1d1e9fd222fb1f539b9563b5400b6c1898a5fdbe6604ef167438df4efa2ce92a61c3b3defb3918e3a0e446001e4b36c2cb29c62553e5936caad86081100741bc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=MHASCH | ||
DIST_VERSION=0.011 | ||
|
||
inherit perl-module | ||
|
||
DESCRIPTION="modular integer arithmetic" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="minimal test" | ||
|
||
PERL_RM_FILES=( | ||
"t/90_pod.t" | ||
"t/91_pod_cover_cp.t" | ||
"t/92_consistency.t" | ||
"t/93_examples.t" | ||
"t/95_versions.t" | ||
"t/99_signature.t" | ||
) | ||
RDEPEND=" | ||
virtual/perl-Carp | ||
>=virtual/perl-Math-BigInt-1.991.0 | ||
!minimal? ( | ||
dev-perl/Math-BigInt-GMP | ||
virtual/perl-Math-BigRat | ||
) | ||
" | ||
DEPEND="${RDEPEND} | ||
virtual/perl-ExtUtils-MakeMaker | ||
test? ( | ||
virtual/perl-Scalar-List-Utils | ||
virtual/perl-Test | ||
virtual/perl-Test-Simple | ||
) | ||
" |