[libmath-bigint-perl] branch master updated (e759b0e -> 359d26a)

Angel Abad angel at debian.org
Sat Dec 24 09:29:33 UTC 2016


This is an automated email from the git hooks/post-receive script.

angel pushed a change to branch master
in repository libmath-bigint-perl.

      from  e759b0e   Update changelog
      adds  d799d7e   New upstream version 1.999807
       new  d7bc402   Merge tag 'upstream/1.999807'
       new  c951f22   Update debian/changelog
       new  359d26a   Update changelog

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES                                            |   44 +
 MANIFEST                                           |   10 +
 META.json                                          |    2 +-
 META.yml                                           |    2 +-
 Makefile.PL                                        |   47 +
 SIGNATURE                                          |  148 +--
 debian/changelog                                   |    7 +
 lib/Math/BigFloat.pm                               |    2 +-
 lib/Math/BigInt.pm                                 |    9 +-
 lib/Math/BigInt/Calc.pm                            |    8 +-
 lib/Math/BigInt/CalcEmu.pm                         |    2 +-
 lib/Math/BigInt/Lib.pm                             |  807 ++++++++------
 t/author-lib-arithmetic-binary-_add.t              |    4 +
 t/author-lib-arithmetic-binary-_div.t              |    4 +
 t/author-lib-arithmetic-binary-_gcd.t              |    4 +
 t/author-lib-arithmetic-binary-_lcm.t              |    4 +
 t/author-lib-arithmetic-binary-_log_int.t          |    2 +-
 t/author-lib-arithmetic-binary-_mod.t              |    4 +
 t/author-lib-arithmetic-binary-_modinv.t           |    2 +
 t/author-lib-arithmetic-binary-_mul.t              |    4 +
 t/author-lib-arithmetic-binary-_nok.t              |    4 +
 t/author-lib-arithmetic-binary-_pow.t              |    8 +-
 t/author-lib-arithmetic-binary-_root.t             |    4 +-
 t/author-lib-arithmetic-binary-_sub.t              |  101 +-
 t/author-lib-arithmetic-ternary-_lsft.t            |    8 +-
 t/author-lib-arithmetic-ternary-_modpow.t          |    4 +
 t/author-lib-arithmetic-ternary-_rsft.t            |    8 +-
 t/author-lib-arithmetic-unary-_dec.dat             | 1127 ++++++++++++++++++++
 t/author-lib-arithmetic-unary-_dec.t               |   19 +-
 t/author-lib-arithmetic-unary-_fac.t               |    4 +
 t/author-lib-arithmetic-unary-_inc.dat             | 1127 ++++++++++++++++++++
 t/author-lib-arithmetic-unary-_inc.t               |   19 +-
 t/author-lib-arithmetic-unary-_sqrt.t              |    4 +
 t/author-lib-bitwise-_and.t                        |    4 +
 t/author-lib-bitwise-_or.t                         |    4 +
 t/author-lib-bitwise-_xor.t                        |    4 +
 t/author-lib-boolean-_is_even.t                    |    4 +
 t/author-lib-boolean-_is_odd.t                     |    4 +
 t/author-lib-boolean-_is_one.t                     |    4 +
 t/author-lib-boolean-_is_ten.t                     |    4 +
 t/author-lib-boolean-_is_two.t                     |    4 +
 t/author-lib-boolean-_is_zero.t                    |    4 +
 t/author-lib-comparison-_acmp.t                    |    4 +
 t/author-lib-constructor-nullary-_one.t            |    4 +
 t/author-lib-constructor-nullary-_ten.t            |    4 +
 t/author-lib-constructor-nullary-_two.t            |    4 +
 t/author-lib-constructor-nullary-_zero.t           |    4 +
 t/author-lib-constructor-unary-_copy.t             |    4 +
 t/author-lib-constructor-unary-_from_bin.t         |    4 +
 t/author-lib-constructor-unary-_from_bytes.t       |    4 +
 t/author-lib-constructor-unary-_from_hex.t         |    4 +
 t/author-lib-constructor-unary-_from_oct.t         |    4 +
 t/author-lib-constructor-unary-_new.t              |    4 +
 t/author-lib-convert-number-_num.t                 |    4 +
 t/author-lib-convert-string-_as_bin.t              |    8 +-
 t/author-lib-convert-string-_as_bytes.t            |    8 +-
 t/author-lib-convert-string-_as_hex.t              |    8 +-
 t/author-lib-convert-string-_as_oct.t              |    8 +-
 t/author-lib-convert-string-_str.t                 |    4 +
 t/author-lib-convert-string-_to_bin.dat            |  650 +++++++++++
 ...s_bin.t => author-lib-convert-string-_to_bin.t} |   16 +-
 ...dat => author-lib-convert-string-_to_bytes.dat} |    0
 ...tes.t => author-lib-convert-string-_to_bytes.t} |   14 +-
 t/author-lib-convert-string-_to_hex.dat            |  340 ++++++
 ...s_hex.t => author-lib-convert-string-_to_hex.t} |   16 +-
 t/author-lib-convert-string-_to_oct.dat            |  490 +++++++++
 ...s_oct.t => author-lib-convert-string-_to_oct.t} |   16 +-
 t/author-lib-misc-_check.t                         |    4 +
 t/author-lib-misc-api_version.t                    |    4 +
 t/author-lib-property-_alen.t                      |    4 +
 t/author-lib-property-_digit.t                     |    4 +
 t/author-lib-property-_len.t                       |    4 +
 t/author-lib-property-_zeros.t                     |   21 +-
 t/calling.t                                        |    2 +-
 74 files changed, 4815 insertions(+), 443 deletions(-)
 create mode 100644 t/author-lib-arithmetic-unary-_dec.dat
 create mode 100644 t/author-lib-arithmetic-unary-_inc.dat
 create mode 100644 t/author-lib-convert-string-_to_bin.dat
 copy t/{author-lib-convert-string-_as_bin.t => author-lib-convert-string-_to_bin.t} (85%)
 copy t/{author-lib-convert-string-_as_bytes.dat => author-lib-convert-string-_to_bytes.dat} (100%)
 copy t/{author-lib-convert-string-_as_bytes.t => author-lib-convert-string-_to_bytes.t} (86%)
 create mode 100644 t/author-lib-convert-string-_to_hex.dat
 copy t/{author-lib-convert-string-_as_hex.t => author-lib-convert-string-_to_hex.t} (85%)
 create mode 100644 t/author-lib-convert-string-_to_oct.dat
 copy t/{author-lib-convert-string-_as_oct.t => author-lib-convert-string-_to_oct.t} (85%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmath-bigint-perl.git



More information about the Pkg-perl-cvs-commits mailing list