Accepting request 923768 from devel:languages:perl:autoupdate

- updated to 0.2620
   see /usr/share/doc/packages/perl-Math-BigRat/CHANGES
  0.2620 2021-10-03
   * Skip tests that don't work on older Perls. Also skip tests that compare
     floating point numbers.
  0.2619 2021-10-01
   * Correct the handling of Inf and NaN in numify().
   * Improve constant overloading. When numeric constants are overloaded
     (with the ":constant" option) in Math::BigRat, every numeric constant
     is converted to an object regardless of how it is written.
  0.2618 2021-09-28
   * Add new method binv() for the inverse.
   * Add new method dparts(), which returns the integer part and fraction part
     of a number. For example, 9/4 is split into 2 and 1/4. This method is
     equivalent to the Math::BigInt and Math::BigFloat methods with the same
     name.
   * Improve blog(). Handle cases $x->blog($b) where the numerator of $x
     and/or $b is 1 as special.
   * Sync tests with Math-BigInt.

OBS-URL: https://build.opensuse.org/request/show/923768
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigRat?expand=0&rev=23
This commit is contained in:
2021-10-12 09:49:03 +00:00
committed by Git OBS Bridge
parent 285076b40c
commit dadfd67a33
4 changed files with 33 additions and 8 deletions

View File

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

View File

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

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Mon Oct 4 03:08:53 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 0.2620
see /usr/share/doc/packages/perl-Math-BigRat/CHANGES
0.2620 2021-10-03
* Skip tests that don't work on older Perls. Also skip tests that compare
floating point numbers.
0.2619 2021-10-01
* Correct the handling of Inf and NaN in numify().
* Improve constant overloading. When numeric constants are overloaded
(with the ":constant" option) in Math::BigRat, every numeric constant
is converted to an object regardless of how it is written.
0.2618 2021-09-28
* Add new method binv() for the inverse.
* Add new method dparts(), which returns the integer part and fraction part
of a number. For example, 9/4 is split into 2 and 1/4. This method is
equivalent to the Math::BigInt and Math::BigFloat methods with the same
name.
* Improve blog(). Handle cases $x->blog($b) where the numerator of $x
and/or $b is 1 as special.
* Sync tests with Math-BigInt.
-------------------------------------------------------------------
Mon Jul 19 03:07:36 UTC 2021 - Tina Müller <timueller+perl@suse.de>

View File

@@ -18,7 +18,7 @@
%define cpan_name Math-BigRat
Name: perl-Math-BigRat
Version: 0.2617
Version: 0.2620
Release: 0
Summary: Arbitrary big rational numbers
License: Artistic-1.0 OR GPL-1.0-or-later
@@ -30,10 +30,12 @@ BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Carp) >= 1.22
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.58
BuildRequires: perl(Math::BigInt) >= 1.999816
BuildRequires: perl(Math::BigInt) >= 1.999821
BuildRequires: perl(Math::Complex) >= 1.36
BuildRequires: perl(Test::More) >= 0.94
Requires: perl(Carp) >= 1.22
Requires: perl(Math::BigInt) >= 1.999816
Requires: perl(Math::BigInt) >= 1.999821
Requires: perl(Math::Complex) >= 1.36
%{perl_requires}
%description
@@ -42,7 +44,6 @@ support for arbitrary big rational numbers.
%prep
%autosetup -n %{cpan_name}-%{version}
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
perl Makefile.PL INSTALLDIRS=vendor
@@ -57,7 +58,7 @@ make test
%perl_gen_filelist
%files -f %{name}.files
%doc BUGS CHANGES math-bigrat-pod.diff README README.md TODO
%doc BUGS CHANGES README README.md TODO
%license LICENSE
%changelog