8
0

Accepting request 341636 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/341636
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=23
This commit is contained in:
2015-10-30 11:51:30 +00:00
committed by Git OBS Bridge
parent f91ea39a2e
commit b7ea3d50b0
4 changed files with 35 additions and 5 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a25676add340435f22605f4a7c1a9919691896a2f08550fe368d17e69c03c849
size 224282

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7925e5ac5301341d24a1836a43285af1546428bc853fd737760e0f63f1324130
size 223884

View File

@@ -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

View File

@@ -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.