[libmath-prime-util-perl] branch master updated (3aa4a75 -> f09c0e2)

gregor herrmann gregoa at debian.org
Sat Dec 21 21:30:05 UTC 2013


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

gregoa pushed a change to branch master
in repository libmath-prime-util-perl.

      from  3aa4a75   Prepare changelog for release
      adds  9c252f3   Imported Upstream version 0.35
       new  69170c5   Merge tag 'upstream/0.35'
       new  862f7d8   New upstream release.
       new  8d7c74c   Add debian/NEWS, mentioning API changes.
       new  58ee15d   Make Recommends on libmath-prime-util-gmp-perl versioned.
       new  01593fe   Lowercase short description.
       new  8dfde22   Declare compliance with Debian Policy 3.9.5.
       new  49ac9e4   Add a patch to fix a spelling mistake.
       new  f09c0e2   releasing package libmath-prime-util-perl version 0.35-1

The 8 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:
 .travis.yml                              |    3 +-
 Changes                                  |  376 +++-
 LICENSE                                  |    6 +-
 MANIFEST                                 |   14 +
 META.json                                |   25 +-
 META.yml                                 |   11 +-
 Makefile.PL                              |   64 +-
 README                                   |    9 +-
 TODO                                     |   59 +-
 XS.xs                                    |  453 +++--
 aks.c                                    |    2 -
 bin/factor.pl                            |    6 +-
 bin/primes.pl                            |   16 +-
 cpanfile                                 |   24 +
 debian/NEWS                              |   38 +
 debian/changelog                         |   11 +
 debian/control                           |    6 +-
 debian/patches/series                    |    1 +
 debian/patches/spelling.patch            |   18 +
 examples/abundant.pl                     |   38 +
 examples/bench-factor-extra.pl           |    4 +-
 examples/bench-isprime-bpsw.pl           |   35 +-
 examples/bench-mp-nextprime.pl           |    1 +
 examples/bench-primearray.pl             |   74 +-
 examples/bench-primecount.pl             |   45 +-
 examples/parallel_fibprime.pl            |   12 +
 examples/sophie_germain.pl               |   38 +-
 examples/test-factor-gnufactor.pl        |    2 +-
 examples/twin_primes.pl                  |   56 +-
 examples/verify-cert.pl                  |  598 ++++++
 examples/verify-gmp-ecpp-cert.pl         |    6 +-
 factor.c                                 |  535 ++----
 factor.h                                 |   22 +-
 lehmer.c                                 |  564 ++++--
 lehmer.h                                 |    4 +-
 lib/Math/Prime/Util.pm                   | 2977 ++++++++++++++++++------------
 lib/Math/Prime/Util/ECAffinePoint.pm     |    6 +-
 lib/Math/Prime/Util/ECProjectivePoint.pm |    6 +-
 lib/Math/Prime/Util/MemFree.pm           |    4 +-
 lib/Math/Prime/Util/PP.pm                |  983 +++++-----
 lib/Math/Prime/Util/PrimalityProving.pm  |  924 ++++++++++
 lib/Math/Prime/Util/PrimeArray.pm        |   53 +-
 lib/Math/Prime/Util/PrimeIterator.pm     |  289 +++
 lib/Math/Prime/Util/ZetaBigFloat.pm      |  127 +-
 lmo.c                                    |  615 ++++++
 lmo.h                                    |    8 +
 mulmod.h                                 |  161 +-
 primality.c                              |  852 +++++++++
 primality.h                              |   22 +
 sieve.c                                  |   38 +-
 sieve.h                                  |   41 +-
 t/02-can.t                               |   45 +-
 t/10-isprime.t                           |   10 -
 t/11-primes.t                            |    1 +
 t/12-nextprime.t                         |    4 +-
 t/13-primecount.t                        |   18 +-
 t/14-nthprime.t                          |   30 +-
 t/15-probprime.t                         |   10 -
 t/16-randomprime.t                       |   61 +-
 t/17-pseudoprime.t                       |   86 +-
 t/19-moebius.t                           |  103 +-
 t/20-primorial.t                         |   17 +-
 t/22-aks-prime.t                         |    1 -
 t/23-primality-proofs.t                  |  103 +-
 t/24-partitions.t                        |   88 +
 t/31-threading.t                         |    2 +-
 t/32-iterators.t                         |  110 +-
 t/50-factoring.t                         |   79 +-
 t/70-rt-bignum.t                         |   20 +-
 t/80-pp.t                                |   71 +-
 t/81-bignum.t                            |   89 +-
 util.c                                   |  353 ++--
 util.h                                   |   34 +
 xt/measure_zeta_accuracy.pl              |   65 +
 xt/nthprime.t                            |   97 +
 xt/primality-proofs.pl                   |  141 +-
 xt/primality-small.pl                    |    2 +-
 xt/primecount-many.t                     |  145 ++
 xt/primes-edgecases.pl                   |  130 ++
 xt/small-is-next-prev.pl                 |  162 +-
 xt/test-bpsw.pl                          |   10 +-
 xt/test-nthapprox.pl                     |   24 +-
 xt/test-pcapprox.pl                      |   18 +-
 xt/test-primes-script2.pl                |    2 +-
 84 files changed, 9122 insertions(+), 3291 deletions(-)
 create mode 100644 cpanfile
 create mode 100644 debian/NEWS
 create mode 100644 debian/patches/series
 create mode 100644 debian/patches/spelling.patch
 create mode 100644 examples/abundant.pl
 create mode 100755 examples/verify-cert.pl
 create mode 100644 lib/Math/Prime/Util/PrimalityProving.pm
 create mode 100644 lib/Math/Prime/Util/PrimeIterator.pm
 create mode 100644 lmo.c
 create mode 100644 lmo.h
 create mode 100644 primality.c
 create mode 100644 primality.h
 create mode 100644 t/24-partitions.t
 create mode 100755 xt/measure_zeta_accuracy.pl
 create mode 100644 xt/nthprime.t
 create mode 100644 xt/primecount-many.t
 create mode 100755 xt/primes-edgecases.pl

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



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