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-GMP: Bump to version 2.150.0
- Add broot, brootrem, bsqrtrem, is_perfect_power, is_perfect_square - Fix tests on older libgmps Package-Manager: Portage-2.3.8, Repoman-2.3.3
- Loading branch information
1 parent
ceb056b
commit 7d6cbab
Showing
2 changed files
with
34 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,2 +1,3 @@ | ||
DIST Math-GMP-2.06.tar.gz 24563 SHA256 bfd044c51687c7356edba1582f83c34a9dfc0c3451f6faeff400be62a7852b37 SHA512 a2619b76cc89a805e8fb538280644f4acc0c9d3da24b3b0810640c741ff66016c8f4920cd48ef7e6ce0e82bec630c0101d33db22f7928e19a03730b1305cac1e WHIRLPOOL b71418235c811e44f404b84e1a3c95c2be1a60f43d8a5ea2f274f0071a789a76433261cad5704237bcf23b8c81c4c708ff3664b61a9e874d2346d2d898e23330 | ||
DIST Math-GMP-2.11.tar.gz 31178 SHA256 4d535c110bf443638fc2f83da7cb120ea5da91cbf9e3e476584b02c81ac82cda SHA512 4296717691ec7699ba5e82f5c0b3f83a831f8f0006c09a843ef9fc25227a26bdc6a623a728bebfc5df01124747c081239281d1cf861ee73a42444f15848a23d4 WHIRLPOOL 7b08a87ba4c0ad7703b0f8a8166c9f2e0cc5db56e384e531e7b3923c50b873a246b1bebfdca257c63903b65c0b0d525942ca92f21c31fba735474b3542f344b9 | ||
DIST Math-GMP-2.15.tar.gz 33002 SHA256 3053450ff81eb8578ba90c1ecf9036fd401df03b4d40f3e9bd259523751bc5d9 SHA512 6c8c13eb168f6233d5bb172ae424aa1c7b5af2cd18aabe1a9a8f2989591245456270b684062684b29539060f91b041589c43cabcd2e7e277335ae188e5f386a2 WHIRLPOOL 70be542b34ff10657e358e780b3a9356498818477d6002f372b1cad0e62ddac722b75af25a9248476152f604f4ff19a3d730f078a8b5f7f0db9edb30bf08004b |
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,33 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=SHLOMIF | ||
DIST_VERSION=2.15 | ||
inherit perl-module | ||
|
||
DESCRIPTION="High speed arbitrary size integer math" | ||
|
||
SLOT="0" | ||
LICENSE="LGPL-2" | ||
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86" | ||
IUSE="test" | ||
|
||
RDEPEND=" | ||
virtual/perl-AutoLoader | ||
virtual/perl-Carp | ||
virtual/perl-Exporter | ||
dev-libs/gmp:0 | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-perl/Devel-CheckLib-0.900.0 | ||
virtual/perl-ExtUtils-MakeMaker | ||
test? ( | ||
virtual/perl-Data-Dumper | ||
virtual/perl-File-Spec | ||
virtual/perl-File-Temp | ||
virtual/perl-IO | ||
virtual/perl-Test-Simple | ||
) | ||
" |