Files
perl-Math-BigInt-Pari/perl-Math-BigInt-Pari.changes
Oliver Kurz 7011896a28 Accepting request 1279805 from devel:languages:perl:autoupdate
- updated to 1.301.600 (1.3016)
   see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
  1.3016 2025-03-25
   * Sync test files with Math-BigInt.
  1.3015 2025-02-22
   * Sync test files with Math-BigInt.

OBS-URL: https://build.opensuse.org/request/show/1279805
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt-Pari?expand=0&rev=29
2025-05-24 16:12:42 +00:00

323 lines
12 KiB
Plaintext

-------------------------------------------------------------------
Thu Mar 27 05:36:03 UTC 2025 - Tina Müller <timueller+perl@suse.de>
- updated to 1.301.600 (1.3016)
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3016 2025-03-25
* Sync test files with Math-BigInt.
1.3015 2025-02-22
* Sync test files with Math-BigInt.
-------------------------------------------------------------------
Fri Mar 22 16:32:02 UTC 2024 - Tina Müller <timueller+perl@suse.de>
- updated to 1.3014
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3014 2024-01-06
* Sync test files with Math-BigInt.
-------------------------------------------------------------------
Tue Mar 12 17:02:35 UTC 2024 - Tina Müller <tina.mueller@suse.com>
- Normalize CPAN version
See https://github.com/openSUSE/cpanspec/issues/47 for details
-------------------------------------------------------------------
Thu Dec 28 03:08:45 UTC 2023 - Tina Müller <timueller+perl@suse.de>
- updated to 1.3013
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3013 2023-12-27
* Sync test files with Math-BigInt.
-------------------------------------------------------------------
Thu Sep 21 03:09:43 UTC 2023 - Tina Müller <timueller+perl@suse.de>
- updated to 1.3012
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3012 2023-09-20
* Sync test files with Math-BigInt.
-------------------------------------------------------------------
Tue Apr 4 03:08:51 UTC 2023 - Tina Müller <timueller+perl@suse.de>
- updated to 1.3011
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3011 2023-04-03
* Update documentation. Remove/update obsolete URLs.
1.3010 2023-04-03
* Sync test files with Math-BigInt.
-------------------------------------------------------------------
Wed May 18 03:08:55 UTC 2022 - Tina Müller <timueller+perl@suse.de>
- updated to 1.3009
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3009 2022-05-17
* Sync test files with Math-BigInt.
-------------------------------------------------------------------
Thu Sep 30 03:09:37 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.3008
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3008 2021-08-28
* Sync test files with Math-BigInt.
-------------------------------------------------------------------
Sat Jul 3 03:09:04 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.3007
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3007 2021-07-02
* Sync test files with Math-BigInt.
-------------------------------------------------------------------
Sat Oct 12 13:49:14 UTC 2019 - <timueller+perl@suse.de>
- updated to 1.3006
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3006 2019-10-10
* Sync test files with Math-BigInt.
-------------------------------------------------------------------
Tue Sep 10 09:50:21 UTC 2019 - Tina Mueller <tina.mueller@suse.com>
- updated to 1.3005
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
1.3005 2018-10-09
* Update MANIFEST.SKIP.
* Sync test files with Math-BigInt.
* Better Makefile.PL.
-------------------------------------------------------------------
Tue Sep 25 15:03:54 UTC 2018 - pmonrealgonzalez@suse.com
- updated to 1.3004 2018-04-17
1.3004 2018-04-17
* The tests now require Test::More version 0.88 or newer.
* Sync test files with Math-BigInt.
* Add test files t/release-test-version.t, t/release-portability.t,
and t/release-cpan-changes.t.
* Use a MANIFEST.SKIP file based on the default file in the
ExtUtils-Manifest distribution.
* Format CHANGES according to CPAN::Changes::Spec.
* Convert test file t/02pod.t to t/release-pod.t and t/03podcov.t
to t/release-pod-coverage.t.
1.3003 2017-01-11
* Fix syntax for required version of Math::BigInt::Lib.
* Better checking of POD coverage.
* Sync test files with Math-BigInt-1.999808.
* _from_hex() now accepts input without a "0x" prefix.
* _from_bin() is more now efficient as it utilises the fact that
Math::Pari::_hex_cvt() assumes the input is binary if the
strings is prefixed by "0b".
* Implement _to_hex(), _to_oct(), and _to_bin() for conversion to
hexadecimal, octal, and binary without prefix.
* Fix _nok() to work around a bug in Math::Pari::binomial().
It doesn't correctly handle cases where both n and k are very large.
* Correct a few cases where non-OO syntax was used, e.g., "$x = _one();"
should be "$x = $class -> _one();".
* _inc() and _dec() now uses post-increment and post-decrement, respectively,
rather than adding or subtracting one.
* In test file t/01load.t, display the PARI library version number.
1.3002 2016-12-03
* Use ExtUtils::MakeMaker rather than Module::Install in Makefile.PL
* Remove author information in LICENSE file.
1.3001 2016-11-23 pjacklam
* Sync test files with Math-BigInt-1.999801. Add t/mbi_rand.t,
t/mbimbf.t, and t/mbimbf.inc since these are included in the test
suite for the other backend libraries (GMP and Pari).
* Add _nok() by using Pari's binomial() function.
* Add _lcm() by using Pari's lcm() function.
1.3000 2016-11-15
* Sync test files with Math-BigInt-1.999800.
* Math::BigInt::Pari is now a subclass of Math::BigInt::Lib, so remove pure
Perl methods from Math::BigInt::Pari that are implemented in the superclass
Math::BigInt::Lib. The methods removed are _modinv() and _log_int(). The
version of _log_int() implemented in Math::BigInt::GMP was buggy anyway.
* Add methods _str() and _set(), and correct _num() method.
1.27 2016-04-25
* Sync test files with Math-BigInt-1.999719.
1.26 2016-04-22
* Sync test files with Math-BigInt-1.999718.
1.25 2016-01-03
* Sync test files with Math-BigInt-1.999714.
- Cleaned with spec-cleaner
-------------------------------------------------------------------
Sat Jan 2 09:54:38 UTC 2016 - coolo@suse.com
- updated to 1.24
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
2015-12-31 v1.24 pjacklam
* Sync test files with Math-BigInt-1.999713.
-------------------------------------------------------------------
Fri Dec 11 09:56:09 UTC 2015 - coolo@suse.com
- updated to 1.23
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
2015-11-22 v1.23 pjacklam
* Sync test files with Math-BigInt-1.999709.
* In v1.22 the required version of Math-BigInt was set to 1.999703, but it
should have been 1.999706. The required version is now 1.999709.
* Correct error in CHANGES file.
2015-11-09 v1.22 pjacklam
* Sync test files with Math-BigInt-1.999709.
* Update the README file.
* Remove the LICENSE file as this information is already covered in the file
README.
* Replace 'use vars ...' with 'our ...'. We require a Perl newer than 5.6.0
anyway.
* Move 'Test::More' from 'build_requires' to 'test_requires' in Makefile.PL.
* Enable 'use warnings'. We require a Perl newer than 5.6.0 anyway.
* Add 'assertlib.*\.exe' to MANIFEST.SKIP, since make generates temporary
files like 'assertlibzxjE4WfG.exe' on Cygwin.
2015-09-21 v1.21 pjacklam
* Sync test files with Math-BigInt-1.999703.
* Required version of Math-BigInt is now 1.999703.
* Update author information.
2015-09-17 v1.20 pjacklam
* Sync test files with Math-BigInt-1.999702.
* Required version of Math-BigInt is now 1.999702.
2015-09-11 v1.19 pjacklam
bigfltpm.inc
* File removed. It was included in the previous release by accident.
bigfltpm.t
* File removed. It was included in the previous release by accident.
bigintpm.inc
* File removed. It was included in the previous release by accident.
bigintpm.t
* File removed. It was included in the previous release by accident.
biglog.t
* File removed. It was included in the previous release by accident.
bigroot.t
* File removed. It was included in the previous release by accident.
inc/Module/Install.pm
* Update bundled Module::Install from v1.08 to v1.16.
lib/Math/BigInt/Pari.pm
* Updated version number.
* Fixed bug in _modpow().
Makefile.PL
* Updated required version of Math::BigInt to 1.999701.
t/01load.t
* Improve formatting of module version information.
t/03podcov.t
* Slight reformatting and better information message.
t/bigfltpm.inc
* Sync tests with the Math-BigInt distribution.
t/bigfltpm.t
* Adjust number of tests.
* Sync tests with the Math-BigInt distribution.
* Make sure we test Math::BigInt::Pari, not Math::BigInt::Calc.
t/bigintpm.inc
* Sync tests with the Math-BigInt distribution.
t/bigintpm.t
* Adjust number of tests.
* Make sure we test Math::BigInt::Pari, not Math::BigInt::Calc.
t/biglog.t
* Adjust number of tests.
* Sync tests with the Math-BigInt distribution.
* Make sure we test Math::BigInt::Pari, not Math::BigInt::Calc.
t/bigroot.t
* Adjust number of tests.
* Make sure we test Math::BigInt::Pari, not Math::BigInt::Calc.
t/*.t
* Add "use warnings" to test scripts, since Perl 5.6.2 is required anyway,
and "use warnings" was introduced in Perl 5.6.1.
* Modified test scripts so the difference between the test files in the
Math-BigInt distribution and the backend distributions are as few and as
small as possible. This makes for easier release management.
-------------------------------------------------------------------
Tue Apr 14 20:44:21 UTC 2015 - coolo@suse.com
- updated to 1.18
see /usr/share/doc/packages/perl-Math-BigInt-Pari/CHANGES
2014-04-03 v1.18 pjacklam
* Updated test files from the Math::BigInt distribution (Peter John Acklam).
* Updated POD (Peter John Acklam)
-------------------------------------------------------------------
Wed May 30 08:18:28 UTC 2012 - coolo@suse.com
- updated to 1.17
* Upgrade bundled modules in "inc" to latest version. (Peter John Acklam)
* Math::BigInt::GMP now requires Math::BigInt v1.997 (Peter John Acklam).
* Include "^MYMETA\.(yml|json)\z" in MANIFEST.SKIP. Whereas META.* are
generated by the distribution author at packaging time, MYMETA.* are
generated by the end user at configure time after any dynamic
dependencies are known. (Peter John Acklam)
* Updated common test files from the Math::BigInt distribution. (Peter
John Acklam)
* Change bigintpm.inc to reflect recent changes in the Math::BigInt
distribution (Peter John Acklam).
* Include latest version of test scripts from Math-BigInt (closes RT#65580)
(Peter John Acklam).
* Add 00sig.t for testing SIGNATURE, and 01load.t for basic module loading and
giving diagnostics useful for bug tracking (Peter John Acklam).
* Rename pod.t to 02pod.t and pod_cov.t to 03podcov.t and use more generic
code (Peter John Acklam).
* Clean up whitespace (Peter John Acklam).
* Fix tests with Math::BigInt >= 1.90 and depend on it.
-------------------------------------------------------------------
Wed Dec 1 10:23:37 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Mon Nov 29 18:30:29 UTC 2010 - coolo@novell.com
- remove /var/adm/perl-modules
-------------------------------------------------------------------
Mon Nov 29 18:00:34 UTC 2010 - coolo@novell.com
- called spec2changelog
-------------------------------------------------------------------
Wed Jan 2 00:00:00 UTC 2008 - jfunk@funktronics.ca
- Initial release