diff --git a/Math-BigInt-1.999706.tar.gz b/Math-BigInt-1.999706.tar.gz deleted file mode 100644 index 94ab7c4..0000000 --- a/Math-BigInt-1.999706.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a25676add340435f22605f4a7c1a9919691896a2f08550fe368d17e69c03c849 -size 224282 diff --git a/Math-BigInt-1.999707.tar.gz b/Math-BigInt-1.999707.tar.gz new file mode 100644 index 0000000..0af064f --- /dev/null +++ b/Math-BigInt-1.999707.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7925e5ac5301341d24a1836a43285af1546428bc853fd737760e0f63f1324130 +size 223884 diff --git a/perl-Math-BigInt.changes b/perl-Math-BigInt.changes index 7030d36..9454c11 100644 --- a/perl-Math-BigInt.changes +++ b/perl-Math-BigInt.changes @@ -1,3 +1,31 @@ +------------------------------------------------------------------- +Fri Oct 30 10:55:11 UTC 2015 - coolo@suse.com + +- updated to 1.999707 + see /usr/share/doc/packages/perl-Math-BigInt/CHANGES + + 2015-10-29 v1.999707 pjacklam + + * Added dependency on Math::Complex 1.39 for Math::Complex::Inf(), which is + used for numifying infinity. + + * Updated author information. + + * Updated information in the file README. + + * Removed the files INSTALL and LICENSE as this information is already covered + in the file README. + + * Enable 'use warnings' in all modules. We require a Perl newer than 5.6.0 + anyway. + + * Replace 'use vars ...' with 'our ...'. We require a Perl newer than 5.6.0 + anyway. + + * Avoid indirect object syntax in documentation. + + * Moved 'Test::More' from 'build_requires' to 'test_requires' in Makefile.PL. + ------------------------------------------------------------------- Thu Oct 29 10:06:14 UTC 2015 - coolo@suse.com diff --git a/perl-Math-BigInt.spec b/perl-Math-BigInt.spec index b22dfce..b1a749c 100644 --- a/perl-Math-BigInt.spec +++ b/perl-Math-BigInt.spec @@ -17,7 +17,7 @@ Name: perl-Math-BigInt -Version: 1.999706 +Version: 1.999707 Release: 0 %define cpan_name Math-BigInt Summary: Arbitrary size integer/float math package @@ -30,6 +30,8 @@ BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: perl BuildRequires: perl-macros +BuildRequires: perl(Math::Complex) >= 1.39 +Requires: perl(Math::Complex) >= 1.39 %{perl_requires} # MANUAL BEGIN Recommends: perl(bignum) >= 0.22 @@ -43,7 +45,7 @@ Recommends: perl(Math::BigRat) >= 0.2602 All operators (including basic math operations) are overloaded if you declare your big integers as - $i = new Math::BigInt '123_456_789_123_456_789'; + $i = Math::BigInt -> new('123_456_789_123_456_789'); Operations with overloaded operators preserve the arguments which is exactly what you expect.