11
0

109 Commits

Author SHA256 Message Date
03da7fc4c5 Accepting request 1278588 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1278588
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=53
2025-05-20 15:04:28 +00:00
10f4adb403 Accepting request 1241534 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1241534
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=52
2025-01-31 15:04:39 +00:00
e0885dc657 - updated to 2.003004
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  2.003004 2025-01-23
  * Fix CPAN RT #150252 regarding bdiv() not modifying the invocand object when
    upgrading/downgrading is enabled.
  * Add hyperoperator method bhyperop(). This method implements succession,
    addition, multiplication, exponentiation, tetration, pentation ...).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=102
2025-01-30 22:23:57 +00:00
511fb4c2e9 Accepting request 1183690 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1183690
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=51
2024-06-28 13:47:20 +00:00
93b911f062 - updated to 2.3.3 (2.003003)
see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  2.003003 2024-05-27
  * Fix CPAN RT #153736 regarding bnok() with large input values.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=100
2024-06-27 18:11:09 +00:00
204527eb2e Accepting request 1156491 from devel:languages:perl
- Fix disabling of __perllib_provides

OBS-URL: https://build.opensuse.org/request/show/1156491
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=50
2024-03-09 19:54:56 +00:00
04a8ee9333 Fix disabling of __perllib_provides
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=98
2024-03-08 22:42:30 +00:00
c7857eb45b Accepting request 1156059 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1156059
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=49
2024-03-08 17:08:48 +00:00
8fd790221d Accepting request 1153631 from devel:languages:perl:autoupdate
- updated to 2.003002
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  2.003002 2024-01-05
   * Improved interaction between Math::BigInt and the backend libraries.
   * Much faster versions of _ilog2() and _clog2() implemented in the
     Math::BigInt::Calc backend library. This should speed up bilog2() and
     bclog2() in Math::BigInt when "Calc" is used as the backend liberary.

OBS-URL: https://build.opensuse.org/request/show/1153631
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=96
2024-03-07 17:19:08 +00:00
79ce09ab89 Accepting request 1136595 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1136595
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=48
2024-01-04 14:58:43 +00:00
491b2b3c86 Accepting request 1136594 from devel:languages:perl:autoupdate
- updated to 2.003001
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  2.003001 2023-12-26
   * Add configuration methods trap_inf() and trap_nan(). Previously it was only
     possible to modify these properties by using the config() method.
   * Fix CPAN RT #150796 so that config() no longer modifies the input when it is
     a hash ref.
   * Fix CPAN RT #150797 so that both accuracy and precision can be set
     simultaneously with config().
   * Add the following methods to Math::BigInt
     - bilog2()   base 2 logarithm rounded downwards, i.e., int(log2(x))
     - bilog10()  base 10 logarithm rounded downwards, i.e., int(log10(x))
     - bclog2()   base 2 logarithm rounded upwards, i.e., ceil(log2(x))
     - bclog10()  base 10 logarithm rounded upwards, i.e., ceil(log10(x))
   * Add the following backend library methods to Math::BigInt::Lib. These
     methods do the core computations for the corresponding methods in
     Math::BigInt (see above).
     - _ilog2()   base 2 logarithm rounded downwards
     - _ilog10()  base 10 logarithm rounded downwards
     - _clog2()   base 2 logarithm rounded upwards
     - _clog10()  base 10 logarithm rounded upwards
  2.002001 2023-12-09
   * Fix CPAN RT #150523
  2.002000 2023-12-02
   * Fix bug in Math::BigFloat method bsin(). It can now handle any argument to
     any precision. Also improve downgrading. This fixes CPAN RT #150590 and the
     bsin() part of CPAN RT #107604.
   * Fix bug in Math::BigFloat method bexp(). Specifying precision (rather than
     accuracy) used to give a NaN. Also improve downgrading.
   * Improve upgrading in Math::BigInt methods bsin() and bcos(). They now
     upgrade only when necessary.
  2.001001 2023-11-21
   * Fix CPAN RT #150469
  2.001000 2023-11-13
   * Fix rounding bug in bsqrt() in Math::BigInt. Also make bsqrt() upgrade only
     when necessary.
   * Simplify and speed up bsqrt() (for computing the square root) in
     Math::BigFloat. The computation time now mainly depends on the desired
     accuracy, not the number of digits in the significand.
   * Add support for using "div_scale" as import parameter, like this
         use Math::BigFloat div_scale => 80;
   * Add better argument checking when the "div_scale" value is set by the
     user.
  2.000000 2023-10-29
   * Merge the Math-BigRat distribution into the Math-BigInt distribution. This
     merge eliminates the problems that users have experienced when incompatible
     versions of the two distributions have been installed. This fixes CPAN RT
     #143228.
   * Add method from_dec() to Math::BigRat to make Math::BigRat more consistent
     with Math::BigInt and Math::BigFloat.
  * To be consistent with Math::BigInt and Math::BigFloat, make it possible to
    use "require" with Math::BigRat, e.g.,
         require Math::BigRat;
         $x = Math::BigRat -> bone();
   * Fix cases where "require" doesn't work for Math::BigInt and Math::BigFloat,
     and add tests to verify that "require" works for Math::BigInt, Math::BigRat,
     and Math::BigFloat.
   * Add methods bblsft() and bbrsft() to Math::BigRat to make Math::BigRat
     consistent with Math::BigInt and Math::BigFloat. These methods do bitwise
     left and right shift, respectively.
   * Fix bug in to_oct() and to_bin() in Math::BigFloat. They called to_hex()
     when upgrading, but should have called to_oct() and to_bin(), respectively.
   * Add to_hex(), to_oct(), to_bin() to Math::BigRat.
   * Add new method binv() to Math::BigInt, Math::BigFloat, and Math::BigRat.
   * Improve as_float() and as_rat().
   * POD updates.

OBS-URL: https://build.opensuse.org/request/show/1136594
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=94
2024-01-03 16:12:18 +00:00
8fd78bcdbb Accepting request 1114118 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1114118
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=47
2023-09-29 19:14:05 +00:00
4d306da5f5 Accepting request 1114098 from devel:languages:perl:autoupdate
- updated to 1.999842
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999842 2023-09-27
   * Fix a bug causing Math::BigInt and Math::BigFloat to be caught in an endless
     recursion. The bug was introduced when trying to fix
     https://github.com/pjacklam/p5-Math-BigInt/issues/8
   * Allow div_scale to be 0. It is not documented what div_scale <= 0 means, but
     there are modules that set div_scale to 0 (e.g., Astro::Units) and fail
     their tests if this is not supported.
  1.999841 2023-09-21
   * Remove development files that were accidentally included in the
     distribution.
  1.999840 2023-09-18
   * Add methods bblsft() and bbrsft(), which do bitwise left and right shift,
     respectively. The binary operators for bitwise left and right shift, "<<"
     and ">>", now call the methods bblsft() and bbrsft(), respectively.
     While this behaviour is consistent with how "<<" and ">>" work on floating
     point numbers in core Perl, it changes how "<<" and ">>" worked on
     Math::BigFloat objects. This is a corner case, but any code currently using
     "<<" and ">>" on Math::BigFloat objects might need to be modified as follows
         $x >>= $y    should be changed to    $x -> brsft($y)
         $x <<= $y    should be changed to    $x -> blsft($y)
         $x >>  $y    should be changed to    $x -> copy() -> brsft($y)
         $x <<  $y    should be changed to    $x -> copy() -> blsft($y)
   * Improve blsft() and brsft(). They now support negative shift values, an
     arbitrarily large base, and have better handling of cases involving NaN.

OBS-URL: https://build.opensuse.org/request/show/1114098
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=92
2023-09-28 16:10:44 +00:00
ae378e5e27 Accepting request 1100905 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1100905
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=46
2023-07-27 14:52:00 +00:00
71de4bcde3 Accepting request 1100680 from devel:languages:perl:autoupdate
- updated to 1.999839
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999839 2023-07-14
   * Update documentation. Remove/update obsolete URLs.
   * Fix CPAN RT #148953 regarding loss of precision when using "log" in
     "bignum". The issue was related to broken upgrading and downgrading in
     Math::BigFloat.

OBS-URL: https://build.opensuse.org/request/show/1100680
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=90
2023-07-26 17:07:31 +00:00
e3e1694b6c Accepting request 1076999 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1076999
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=45
2023-04-03 15:47:24 +00:00
643c611d4b Accepting request 1076913 from devel:languages:perl:autoupdate
- updated to 1.999838
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999838 2023-03-30
   * Fix CPAN RT #146411 regarding infinite recursion in bitwise operations. This
     happened when arguments were upgraded and downgraded and upgraded again ad
     infinitum. Add tests to verify the fix.

OBS-URL: https://build.opensuse.org/request/show/1076913
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=88
2023-04-03 13:21:58 +00:00
712b3de030 Accepting request 986679 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/986679
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=44
2022-07-05 10:09:25 +00:00
40166fd553 Accepting request 986608 from devel:languages:perl:autoupdate
- updated to 1.999837
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999837 2022-07-02
   * Improve the interoperability between objects of different classes for the
     methods that are still used as functions.

OBS-URL: https://build.opensuse.org/request/show/986608
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=86
2022-07-04 14:54:46 +00:00
1f91928182 Accepting request 985280 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/985280
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=43
2022-06-28 13:21:30 +00:00
Lars Vogdt
956ad84bda Accepting request 985261 from devel:languages:perl:autoupdate
- updated to 1.999836
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999836 2022-06-24
   * Improve compatibility with older versions of the Math-BigRat distribution.
     Math-BigInt version 1.999835 works with Math-BigRat version 0.2623 and newer.
     Math-BigInt version 1.999836 works with Math-BigRat version 0.2618 and newer.
   * Re-enable upgrading in Math::BigFloat->bdiv().
   * Fix an error in the enabling/disabling of upgrading/downgrading.
   * Fix typos and other formatting errors.

OBS-URL: https://build.opensuse.org/request/show/985261
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=84
2022-06-27 10:00:07 +00:00
85c848448b Accepting request 980487 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/980487
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=42
2022-06-02 19:54:41 +00:00
Lars Vogdt
c7a8bc0fc3 Accepting request 979962 from devel:languages:perl:autoupdate
- updated to 1.999835
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999835 2022-05-24
   * Fix bug related to upgrading in Math::BigInt->brsft(). This bug
     only showed up in Perl versions 5.16 and older.
  1.999834 2022-05-23
   * Further improvements to upgrading and downgrading.
  1.999833 2022-05-23
   * Fix Math::BigFloat->bpi(). The previous attempt at correcting it
     wasn't sufficient. Added test to verify the fix.
   * Correct the formatting in the CHANGES file.
  1.999832 2022-05-21
   * Improve as_int(), as_float(), and as_rat() so that they return a
     Math::BigInt, Math::BigFloat, and Math::BigRat, respectivly,
     regardless of upgrading and downgrading.
   * Improve stringification method bsstr() so that it handles upgrading
     and downgrading better.
   * Fix Math::BigFloat->bpi(), which unfortunately didn't handle
     downgrading.
   * Avoid unnecessary downgrading/upgrading.
   * Add missed cases where downgrading/upgrading should be performed.
   * Avoid unnecessary stringification.

OBS-URL: https://build.opensuse.org/request/show/979962
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=82
2022-06-02 09:27:34 +00:00
217265325f Accepting request 978227 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/978227
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=41
2022-05-20 15:51:00 +00:00
Lars Vogdt
72a663ff41 Accepting request 977720 from devel:languages:perl:autoupdate
- updated to 1.999831
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999831 2022-05-16
   * Further improvements to upgrading, downgrading, and rounding.
   * New stringification method bfstr() for representing numbers as fractions.
     E.g., Math::BigFloat -> new("1.25") -> bfstr() returns "5/4".
   * Miscellaneous bug fixes.
   * Fixed errors and typos in the documentation.

OBS-URL: https://build.opensuse.org/request/show/977720
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=80
2022-05-20 08:34:08 +00:00
1f15cca68b Accepting request 972542 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/972542
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=40
2022-04-25 21:35:31 +00:00
65bf931410 Accepting request 970513 from devel:languages:perl:autoupdate
- updated to 1.999830
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999830 2022-04-11
   * Improve upgrading and downgrading. This work is not complete. Some methods
     still don't downgrade when they should.

OBS-URL: https://build.opensuse.org/request/show/970513
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=78
2022-04-25 09:15:05 +00:00
e8d059a5f7 Accepting request 946969 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/946969
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=39
2022-01-17 21:34:16 +00:00
18154f00e1 Accepting request 946030 from devel:languages:perl:autoupdate
- updated to 1.999829
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999829 2021-12-29
   * Improve methods div_scale() and round_mode() so they work better with
     subclasses. This fixes CPAN RT #125430.
   * Make div_scale() accept a Math::Big(Int|Float|Rat) object as input. This
     fixes CPAN RT #140599.
  1.999828 2021-12-17
   * Add new methods numerator(), denominator(), and fparts().
   * Fix bug in to_ieee754(). Avoid that the significand overflows.
   * Improve bpow(). Avoid unnecessary upgrading.
   * Fix typos and improve wording.

OBS-URL: https://build.opensuse.org/request/show/946030
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=77
2022-01-17 13:46:59 +00:00
1a0d17f350 Accepting request 924830 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/924830
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=38
2021-10-12 19:49:44 +00:00
7a67525d3c Accepting request 923767 from devel:languages:perl:autoupdate
- updated to 1.999827
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999827 2021-10-03
   * Improve error message for missing library argument.
   * Skip tests that don't work on older Perls. Also skip tests that compare
     floating point numbers.
  1.999826 2021-10-01
   * Improve documentation related to floating point literals.
   * Skip tests that fail due to Perl's broken handling of floating point literals
     before v5.32.0.
  1.999825 2021-09-28
   * Make Math::BigInt accept integers regardless of whether they are written as
     decimal, binary, octal, or hexadecimal integers or decimal, binary, octal, or
     hexadecimal floating point number.
   * When numeric constants are overloaded (with the ":constant" option) in
     Math::BigInt, every numeric constant that represent an integer is converted
     to an object regardless of how it is written. All finite non-integers are
     converted to a NaN.
   * When numeric constants are overloaded (with the ":constant" option) in
     Math::BigFloat, every numeric constant is converted to an object regardless
     of how it is written.
   * Add method from_dec() (cf. from_bin(), from_oct(), and from_hex()). It is
     like new() except that it does not accept anything but a string representing a
     finite decimal number.

OBS-URL: https://build.opensuse.org/request/show/923767
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=76
2021-10-12 09:48:53 +00:00
a8343d48ec Accepting request 921843 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/921843
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=37
2021-09-27 18:09:07 +00:00
d783ea9a8b Accepting request 921750 from devel:languages:perl:autoupdate
- updated to 1.999824
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999824 2021-09-20
   * Don't allow mixing math libraries. Use the first backend math library that is
     successfully loaded, and ignore any further attempts at loading a different
     backend library. This is a solution to the re-occurring problem of using
     objects using different math libraries.
   * Add missing documentation.
   * Miscellaneous minor improvements.

OBS-URL: https://build.opensuse.org/request/show/921750
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=75
2021-09-27 15:58:28 +00:00
2b1472a28e Accepting request 907025 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/907025
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=36
2021-07-20 13:38:56 +00:00
Stephan Kulow
ec3aca933f Accepting request 906075 from devel:languages:perl:autoupdate
- 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.

OBS-URL: https://build.opensuse.org/request/show/906075
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=74
2021-07-19 06:59:07 +00:00
9df4935f54 Accepting request 742705 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/742705
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=35
2019-10-24 21:11:29 +00:00
3244e125b9 Accepting request 741913 from devel:languages:perl:autoupdate
- updated to 1.999818
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999818 2019-10-20
  
   * Fix CPAN RT #130736 regarding numify() on a Math::BigFloat with a large
     number of digits and an equally large, but negative, exponent.
  
   * Fix a problem in to_ieee754() due to rounding in bpow().

OBS-URL: https://build.opensuse.org/request/show/741913
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=72
2019-10-24 19:41:06 +00:00
211c0f2661 Accepting request 738588 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/738588
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=34
2019-10-18 12:36:00 +00:00
44fd6481d2 Accepting request 737899 from devel:languages:perl:autoupdate
- updated to 1.999817
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  1.999817 2019-10-11
  
   * Avoid non-integers in intermediate computations in Math::BigInt::Calc. This
     causes errors due to rounding issues, e.g., 47265625999999999 / 1000000000
     is 47265626 with double precision.
  
   * Remove api_version() and the corresponding test file. There is no need to
     check which methods are supported by a backend library now that each backend
     library is a subclass of Math::BigInt::Lib. Methods not provided in the
     backend library are provided by the parent class.
  
   * Add to_ieee745() and from_ieee754().
  
   * Add backermann() and ackermann() for the Ackermann function.
  
   * Add buparrow() and uparrow() for Knuth's up-arrow notation.
  
   * Add information about the github repository.
  
   * Update links in SUPPORT section in POD.
  
   * Fix bpow(). It returned NaN when it should truncate to zero.
  
   * Make blsft() in Math::BigInt allow bases up until the largest unsigned
     integer.
  
   * Make _lsft() in Math::BigInt::Calc handle an arbitrarily large base.
  
   * Add new methods bdigitsum() and digitsum() to Math::BigInt. Add new method
     _digitsum() to Math::BigInt::Lib.
  
   * Add new methods is_non_negative() and is_non_positive().
  
   * Extend the default collation sequence used by to_base() and from_base() to
     all the 94 printable ASCII characters except blank/space.
  
   * Make new() in Math::BigFloat handle octal floating point numbers.
  
   * Slightly more robust t/01load.t.
  
   * Remove unused variables.
  
   * Miscellaneous code cleanup.

OBS-URL: https://build.opensuse.org/request/show/737899
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=70
2019-10-15 10:47:20 +00:00
84459c3fc3 Accepting request 647353 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/647353
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=33
2018-11-12 08:39:36 +00:00
f0bd3e7627 Accepting request 647199 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/647199
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=68
2018-11-08 15:22:11 +00:00
2037d9d57e Accepting request 599901 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/599901
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=32
2018-04-25 08:01:30 +00:00
Stephan Kulow
05596acb63 Accepting request 599534 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/599534
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=66
2018-04-23 07:49:35 +00:00
Stephan Kulow
012248ceac Accepting request 597620 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/597620
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=65
2018-04-20 13:45:56 +00:00
11abe39ef5 Accepting request 482419 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/482419
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=31
2017-03-31 13:08:23 +00:00
Stephan Kulow
82bb7baaf0 Accepting request 482418 from devel:languages:perl:autoupdate
- updated to 1.999811
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  2017-03-15 v1.999811 pjacklam
  
   * Fix an old in the Math::BigFloat methods as_hex(), as_oct(), and as_bin()
     methods resulting in loss of accuracy. This bug was introduced in bug in
     Math-BigInt-1.76. Due to a naive copy and paste by me, and lack of tests,
     this bug was also present in the newer to_hex(), to_oct(), and to_bin()
     methods. This shows the bug, as it did not print "0xffff...":
  
         print Math::BigFloat -> from_hex("f" x 30) -> as_hex();
  
   * Fix incorrect formatting in the output from the Math::BigFloat methods
     to_hex(), to_oct(), and to_bin() when the output was zero. A prefix was
     added when it shouldn't have been.
  
   * Add tests to bigintpm.inc and bigfltpm.inc for better testing of as_hex(),
     as_oct(), and as_bin() as well as to_hex(), to_oct(), and to_bin().
  
   * "Synchronize" tests and code formatting in bigintpm.inc and bigfltpm.inc.

- updated to 1.999810
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  2017-03-01 v1.999810 pjacklam
  
   * CPAN RT #120240 revealed that the problems with undefined values is still
     present. After a close examination, I believe the only way to get this
     really working is to to make blog() call objectify() differently depending
     on whether the base for the logarithm is undefined or not. That way we can
     avoid objectify() converting the undefined value to a zero. Ideally, we

OBS-URL: https://build.opensuse.org/request/show/482418
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=63
2017-03-24 06:14:31 +00:00
eb16458f2e Accepting request 456580 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/456580
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=30
2017-02-15 09:06:48 +00:00
Stephan Kulow
1b27162eff Accepting request 456370 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/456370
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=61
2017-02-13 06:23:08 +00:00
59b476f9a1 Accepting request 449777 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/449777
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=29
2017-01-21 23:49:01 +00:00
Stephan Kulow
dfc305b9b4 Accepting request 449773 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/449773
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=59
2017-01-12 06:25:53 +00:00
Stephan Kulow
f73483d108 Accepting request 447586 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/447586
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=58
2017-01-03 08:24:11 +00:00
Stephan Kulow
94ed37f017 Accepting request 445677 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/445677
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=57
2016-12-15 06:14:47 +00:00
Stephan Kulow
8268db4323 Accepting request 445374 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/445374
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=56
2016-12-12 11:45:50 +00:00
Stephan Kulow
698df35b9a Accepting request 445018 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/445018
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=55
2016-12-09 13:15:33 +00:00
Stephan Kulow
ffc1547145 Accepting request 443746 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/443746
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=54
2016-12-05 08:33:53 +00:00
6ca82044af Accepting request 442773 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/442773
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=28
2016-12-02 15:42:00 +00:00
Stephan Kulow
299b77e6bb Accepting request 442508 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/442508
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=52
2016-11-30 06:20:25 +00:00
93d23585cb Accepting request 441934 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/441934
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=27
2016-11-28 14:07:48 +00:00
Stephan Kulow
35b6503112 Accepting request 441930 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/441930
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=50
2016-11-25 07:25:44 +00:00
670ecfe7d2 Accepting request 440742 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/440742
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=26
2016-11-18 21:02:47 +00:00
Stephan Kulow
c448a31470 Accepting request 440676 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/440676
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=48
2016-11-17 20:00:33 +00:00
cf3987c8c1 Accepting request 439458 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/439458
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=25
2016-11-10 12:28:06 +00:00
Stephan Kulow
49e7ef8d8f Accepting request 438767 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/438767
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=46
2016-11-10 05:57:42 +00:00
56e3e8268c Accepting request 411404 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/411404
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=24
2016-07-20 07:19:10 +00:00
Stephan Kulow
1387177cbe Accepting request 409000 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/409000
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=44
2016-07-17 08:13:25 +00:00
9e8d19824e Accepting request 404391 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/404391
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=23
2016-06-25 00:24:13 +00:00
Stephan Kulow
597290631b Accepting request 404123 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/404123
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=42
2016-06-24 05:02:10 +00:00
bb74a51493 Accepting request 401457 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/401457
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=22
2016-06-19 08:48:03 +00:00
Stephan Kulow
3edb4f1187 Accepting request 401425 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/401425
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=40
2016-06-12 14:12:16 +00:00
67591def34 Accepting request 394294 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/394294
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=21
2016-05-25 19:22:31 +00:00
Stephan Kulow
c0c735bd1e Accepting request 393831 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/393831
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=38
2016-05-09 05:38:47 +00:00
c6f4f6290c Accepting request 386082 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/386082
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=20
2016-04-12 17:35:26 +00:00
Stephan Kulow
4588d5aa6a Accepting request 385653 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/385653
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=36
2016-04-08 05:43:44 +00:00
aeb2cf52f7 Accepting request 352429 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/352429
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=19
2016-01-11 18:11:49 +00:00
Stephan Kulow
6d1b083f56 Accepting request 352250 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/352250
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=34
2016-01-07 11:44:07 +00:00
8e043a8b9e Accepting request 351992 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/351992
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=18
2016-01-05 20:55:32 +00:00
0951c7ed6e Accepting request 351862 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/351862
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=32
2016-01-05 08:44:14 +00:00
e53533571f Accepting request 351606 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/351606
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=31
2016-01-02 21:28:39 +00:00
3905761a87 Accepting request 344362 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/344362
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=17
2015-11-15 11:46:54 +00:00
Stephan Kulow
b6f5231568 Accepting request 344335 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/344335
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=29
2015-11-14 10:57:15 +00:00
ea16c6201b Accepting request 343863 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/343863
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=16
2015-11-12 18:41:20 +00:00
Stephan Kulow
f4e87eec51 Accepting request 343816 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/343816
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=27
2015-11-11 14:56:21 +00:00
ec9f074e41 Accepting request 342749 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/342749
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=15
2015-11-08 10:27:01 +00:00
cadd3e8f07 Accepting request 342658 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/342658
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=25
2015-11-06 19:38:02 +00:00
Stephan Kulow
170986fe2f Accepting request 341664 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/341664
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=14
2015-10-30 20:52:56 +00:00
b7ea3d50b0 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
2015-10-30 11:51:30 +00:00
f91ea39a2e Accepting request 341461 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/341461
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=22
2015-10-29 10:26:32 +00:00
f3089732cb Accepting request 341263 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/341263
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=13
2015-10-28 16:31:11 +00:00
c6cd4dae76 Accepting request 341153 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/341153
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=20
2015-10-28 07:12:45 +00:00
Stephan Kulow
f7c083fcc8 Accepting request 333935 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/333935
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=12
2015-09-30 03:52:11 +00:00
dcd1c67164 Accepting request 333874 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/333874
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=18
2015-09-26 19:19:02 +00:00
Stephan Kulow
a7f338b164 Accepting request 333087 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/333087
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=11
2015-09-24 04:15:53 +00:00
cccf6b8380 Accepting request 332935 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/332935
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=16
2015-09-23 07:04:07 +00:00
Stephan Kulow
8c6adb7b1f Accepting request 332222 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/332222
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=15
2015-09-20 13:49:35 +00:00
0b7cfa92a9 Accepting request 330958 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/330958
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=10
2015-09-17 07:20:47 +00:00
Stephan Kulow
5e58be0be6 Accepting request 330924 from devel:languages:perl:autoupdate
automatic update

OBS-URL: https://build.opensuse.org/request/show/330924
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=13
2015-09-14 19:30:16 +00:00
3862757fc7 Accepting request 328286 from devel:languages:perl
1

OBS-URL: https://build.opensuse.org/request/show/328286
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=9
2015-09-01 22:36:46 +00:00
Stephan Kulow
ad30c69512 Accepting request 328284 from devel:languages:perl:autoupdate
- updated to 1.9997
   see /usr/share/doc/packages/perl-Math-BigInt/CHANGES
  ##############################################################################
  The changes are now grouped by distribution.

OBS-URL: https://build.opensuse.org/request/show/328284
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=11
2015-09-01 09:49:27 +00:00
Stephan Kulow
f6e44972ef Accepting request 235748 from devel:languages:perl
update to version 1.9993 (forwarded request 235742 from cyberiad)

OBS-URL: https://build.opensuse.org/request/show/235748
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=7
2014-06-01 17:40:55 +00:00
1418120ff9 Accepting request 235742 from home:cyberiad:branches:devel:languages:perl
update to version 1.9993

OBS-URL: https://build.opensuse.org/request/show/235742
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=9
2014-05-29 11:39:13 +00:00
Stephan Kulow
395e5435e4 Accepting request 178539 from devel:languages:perl
- rebuild against perl 5.18

OBS-URL: https://build.opensuse.org/request/show/178539
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=5
2013-06-13 15:46:41 +00:00
Stephan Kulow
44a5e0cac9 - rebuild against perl 5.18
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=7
2013-06-11 13:11:12 +00:00
Stephan Kulow
1eb1b97332 replace license with spdx.org variant
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=2
2011-12-06 17:44:07 +00:00
Stephan Kulow
d702882f04 Accepting request 92404 from devel:languages:perl
even though an old version is in core of perl, we need this for GMP

OBS-URL: https://build.opensuse.org/request/show/92404
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Math-BigInt?expand=0&rev=1
2011-11-21 11:42:44 +00:00
Stephan Kulow
2718c2487b OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=5 2011-11-18 12:38:23 +00:00
Stephan Kulow
120559f9e7 - updated to 1.997
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=4
2011-11-18 12:38:10 +00:00
Stephan Kulow
bb109ead4f - update to 1.997
* Document actual behaviour of from_xxx() methods. [perl #85334] (Peter John
     Acklam)
   * Make bmuladd() able to handle third arg properly. [perl #85482] (Peter John
     Acklam)
   * Add sign function bsgn() as a complement to babs(). (Peter John Acklam)
   * Fix objectify()'s handling of "foreign objects". (RT #16221 and #52124)
     (Peter John Acklam)
   * Rewrap some verbatim pod in Math::BigInt. (Father Chrysostomos)
   * Correct links to sections. (Alexandr Ciornii)
   * Remove incorrect formatting inside verbatim paragraphs. (Alexandr Ciornii)
   * Upgrade bundled modules in "inc" to latest version. (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)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=3
2011-11-18 12:32:20 +00:00
Stephan Kulow
e4ae64ff9d OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=2 2011-11-11 11:19:47 +00:00
Stephan Kulow
03b9dca8c3 initial package
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt?expand=0&rev=1
2011-04-29 07:35:37 +00:00
2 changed files with 0 additions and 6 deletions

View File

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

View File

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