Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package perl-Math-BigInt for
openSUSE:Factory checked in at 2021-07-20 15:38:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Math-BigInt (Old)
and /work/SRC/openSUSE:Factory/.perl-Math-BigInt.new.2632 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Math-BigInt"
Tue Jul 20 15:38:56 2021 rev:36 rq:907025 version:1.999823
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Math-BigInt/perl-Math-BigInt.changes
2019-10-24 23:11:31.600687723 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Math-BigInt.new.2632/perl-Math-BigInt.changes
2021-07-20 15:39:21.073460266 +0200
@@ -1,0 +2,45 @@
+Tue Jul 13 03:07:40 UTC 2021 - Tina M??ller <[email protected]>
+
+- updated to 1.999823
+ see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
+
+ 1.999823 2021-07-12
+ * Improve the handling of the backend libraries. Provide more useful
warnings
+ and error messages. Update the documentation.
+ 1.999822 2021-07-09
+ * Make the from_hex(), from_oct(), and from_bin() methods consistent with
+ CORE::oct(), which does not require a leading "0" before the letter ("x",
+ "o", or "b").
+ * Make the from_oct() and new() methods accept octal numbers with prefix
+ "0o", "0O", "o" (lowercase letter o), and "O" (capital letter O).
+ * Make the from_bin() and new() methods accept binary numbers with
+ prefix "0b", "0B", "b", and "B".
+ * Make the from_hex() and new() methods accept hexadecimal numbers with
+ prefix "0x", "0X", "x", and "X".
+ * Update test files to match with the above.
+ 1.999821 2021-07-06
+ * Make new() and from_hex() accept the "0X" prefix, not just the "0x"
prefix,
+ but not accept just "X" or "x". Now, "0XFF" returns 255, not NaN.
+ * Make new() and from_bin() accept the "0B" prefix, not just the "0b"
prefix, but
+ not accept just "B" or "b". Now, "0B1111" returns 255, not NaN.
+ * Make new() and from_oct() accept the "0o" and "0O" prefixes, but not
accept
+ just "O" (capital letter O) or "o" (lowercase letter o). Now, "0o377" and
+ "0O377" return 255, not NaN. Also intepret floating point numbers with a
+ leading zero and a binary exponent as an octal number, so that "01.4p0"
+ returns 1.5, not NaN. There is still no ambiguety, since decimal floating
+ point numbers use "e" or "E" before the exponent, and binary and
hexadecimal
+ floating point numbers use a "0b"/"0B" or "0x"/"0x" prefix, respectively.
+ 1.999820 2021-07-06
+ * Fix bug and improve error messages in Math::BigInt::import().
+ 1.999819 2021-07-02
+ * Add method btfac() (triple factorial) and bmfac() (multi-factorial),
+ including tests and documentation.
+ * Add missing and correct erroneous documentation for bfac() (factorial)
+ and bdfac() (double factorial). Also correct handling of special cases
+ and add tests for these cases.
+ * Fix error in bsin() and bcos() causing them to hang indefinitely if the
+ invocand is +/-inf.
+ * Make it possible for the end user to specify the base length used
internally
+ in Math::BigInt::Calc.
+
+-------------------------------------------------------------------
Old:
----
Math-BigInt-1.999818.tar.gz
New:
----
Math-BigInt-1.999823.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Math-BigInt.spec ++++++
--- /var/tmp/diff_new_pack.OB5Ryy/_old 2021-07-20 15:39:21.649461296 +0200
+++ /var/tmp/diff_new_pack.OB5Ryy/_new 2021-07-20 15:39:21.653461303 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-Math-BigInt
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,23 +16,24 @@
#
+%define cpan_name Math-BigInt
Name: perl-Math-BigInt
-Version: 1.999818
+Version: 1.999823
Release: 0
-%define cpan_name Math-BigInt
Summary: Arbitrary size integer/float math package
License: Artistic-1.0 OR GPL-1.0-or-later
-Group: Development/Libraries/Perl
-Url: https://metacpan.org/release/%{cpan_name}
+URL: https://metacpan.org/release/%{cpan_name}
Source0:
https://cpan.metacpan.org/authors/id/P/PJ/PJACKLAM/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
-BuildRequires: perl(Math::Complex) >= 1.39
+BuildRequires: perl(Carp) >= 1.22
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.58
+BuildRequires: perl(Math::Complex) >= 1.36
BuildRequires: perl(Test::More) >= 0.94
-Requires: perl(Math::Complex) >= 1.39
+Requires: perl(Carp) >= 1.22
+Requires: perl(Math::Complex) >= 1.36
%{perl_requires}
# MANUAL BEGIN
Recommends: perl(bignum) >= 0.22
@@ -47,12 +48,12 @@
is also provided for Perl operators.
%prep
-%setup -q -n %{cpan_name}-%{version}
-find . -type f ! -path "*/t/*" ! -name "*.pl" ! -name "*.sh" -print0 | xargs
-0 chmod 644
+%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
-make %{?_smp_mflags}
+%make_build
%check
make test
@@ -63,8 +64,7 @@
%perl_gen_filelist
%files -f %{name}.files
-%defattr(-,root,root,755)
-%doc BUGS CHANGES CREDITS examples GOALS HISTORY NEW README TODO
+%doc BUGS CHANGES CREDITS examples GOALS HISTORY NEW README README.md TODO
%license LICENSE
%changelog
++++++ Math-BigInt-1.999818.tar.gz -> Math-BigInt-1.999823.tar.gz ++++++
++++ 477904 lines of diff (skipped)