diff options
author | Kent Fredric <kentnl@gentoo.org> | 2016-11-19 16:17:30 +1300 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2016-11-19 16:17:57 +1300 |
commit | 74805daaa62783c9b84045a4f55963b4a62f3f79 (patch) | |
tree | 7dddd4f7c3ed6cf91f69e689b22b3aaae081ec5c /dev-perl/Math-BigInt-GMP | |
parent | perl-core/Math-BigInt: Bump to version 1.999.800 (masked) (diff) | |
download | gentoo-74805daaa62783c9b84045a4f55963b4a62f3f79.tar.gz gentoo-74805daaa62783c9b84045a4f55963b4a62f3f79.tar.bz2 gentoo-74805daaa62783c9b84045a4f55963b4a62f3f79.zip |
dev-perl/Math-BigInt-GMP: Bump to version 1.600.0 (masked)
- Masked due to needing newer virtual/perl-Math-BigInt
- Removed toxic author tests
Upstream:
- Reimplemented in terms of a Math::BigInt::Lib subclass
- Removed methods _digit, _num, _nok, and _log_int
- _check no longer warns of uninitialzed values if given an object
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-perl/Math-BigInt-GMP')
-rw-r--r-- | dev-perl/Math-BigInt-GMP/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/Math-BigInt-GMP/Math-BigInt-GMP-1.600.0.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-perl/Math-BigInt-GMP/Manifest b/dev-perl/Math-BigInt-GMP/Manifest index fce3abe64811..bcd5820535ae 100644 --- a/dev-perl/Math-BigInt-GMP/Manifest +++ b/dev-perl/Math-BigInt-GMP/Manifest @@ -1,2 +1,3 @@ DIST Math-BigInt-GMP-1.38.tar.gz 55585 SHA256 1ad0cac911a08f150c5e5a8286aec20de21c863bd27b8f002456cff11e086f15 SHA512 e33abe8c3b939e559be4e3ec61ce77a6fb3da6451ea88cb22fd4785cfebc816024e957ad02e81b43ee982346e0e444630ee5d93a87a02182a765374d1a694222 WHIRLPOOL 15c9d6fedd1f14401171b66a6094ef092ebf7ba991bbf82827da1d8973beed37adae4d0ba85e2aed0db9f5ec6f4bc4e12c1ed143645492ccf2b13b551e3f9922 DIST Math-BigInt-GMP-1.49.tar.gz 59712 SHA256 757b5f7859f1e82ef96ef560bac22fe37c1d7d6759f479a312676ad65181362f SHA512 bed7b1670de31b40203f2026be7245dc3650f77e12e4803af78751aba95488de5b99f5e23dd59ac7f4ed31687c47a2fb7a8c5aa8ea1355676a5bc5526501bc5e WHIRLPOOL 9fac27895fcc3622ad3d23f77e5d30aa9e60c01187720f772c941cc774f37118d3ae2f0c17a9af2fe763209b8455a91a89c3b9eb0836b6e1ecfa2b1e7c3e3472 +DIST Math-BigInt-GMP-1.6000.tar.gz 2249006 SHA256 378a1a088da6712bfd9df044798df278131802e3a1c8b72e7b2078f3ab2f6901 SHA512 2c7f529d596a105826c0a1589ff7a9e54a9067b8aa805fbb5e1047019d89865e72018c75f8922d1f0cae5ca4cd33ca5a63e61451c3f3bc6e993bbd2007fefd0b WHIRLPOOL 0291d2564728ebb8bb937644ba2d4f7d6ea8694d35ac7e1de3d700f78d81eecfb9c902727adf891cbabf8e19daae492729b3780d3641fc5f4afd5b499774c43a diff --git a/dev-perl/Math-BigInt-GMP/Math-BigInt-GMP-1.600.0.ebuild b/dev-perl/Math-BigInt-GMP/Math-BigInt-GMP-1.600.0.ebuild new file mode 100644 index 000000000000..c4f7f1cfa1f7 --- /dev/null +++ b/dev-perl/Math-BigInt-GMP/Math-BigInt-GMP-1.600.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=PJACKLAM +DIST_VERSION=1.6000 +inherit perl-module + +DESCRIPTION="Use the GMP library for Math::BigInt routines" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="test" + +RDEPEND=" + >=virtual/perl-Math-BigInt-1.999.800 + >=virtual/perl-XSLoader-0.20.0 + >=dev-libs/gmp-4.0.0:0 +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( >=virtual/perl-Test-Simple-0.940.0 ) +" +src_test() { + perl_rm_files t/author-*.t t/00sig.t t/02pod.t t/03podcov.t + perl-module_src_test +} |