libmath-prime-util-gmp-perl 0.16-1 source package in Ubuntu

Changelog

libmath-prime-util-gmp-perl (0.16-1) unstable; urgency=medium


  * Team upload.
  * New upstream release.
  * Add years of upstream copyright.
  * Add debian/NEWS, mentioning an API change.
  * Make Recommends on libmath-prime-util-perl versioned.
  * Slightly improve short and long description.
  * Use debhelper 9.20120312 to get all hardening flags.
  * Use canonical URL in Vcs-Git field.
  * Install example scripts.
  * Add a patch to fix a spelling mistake.
  * Declare compliance with Debian Policy 3.9.5.

 -- gregor herrmann <email address hidden>  Sat, 21 Dec 2013 22:30:22 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libmath-prime-util-gmp-perl_0.16-1.dsc 2.1 KiB 8fd4085b684307698069146d0eddd75463e1f5a8da6b108959b3f016fb7a1c9d
libmath-prime-util-gmp-perl_0.16.orig.tar.gz 192.4 KiB 98524c8b7f6eb6c0185470a0888237e9d8b85fc45e135545947acda8ea5d8229
libmath-prime-util-gmp-perl_0.16-1.debian.tar.gz 2.7 KiB e66a3a9df75c7cc5a2777eb5bbad972926c05b9afcb9f0ace3c1c136309fa0be

Available diffs

No changes file available.

Binary packages built by this source

libmath-prime-util-gmp-perl: utilities related to prime numbers, using GMP

 Math::Prime::Util::GMP contains a set of utilities related to prime numbers,
 using GMP. This includes primality tests, getting primes in a range, and
 factoring.
 .
 While it certainly can be used directly, the main purpose of this module is
 for Math::Prime::Util. That module will automatically load this if it is
 installed, greatly speeding up many of its operations on big numbers.
 .
 Inputs and outputs for big numbers are via strings, so you do not need to use
 a bigint package in your program. However if you do use bigints, inputs will
 be converted internally so there is no need to convert before a call. Output
 results are returned as either Perl scalars (for native-size) or strings (for
 bigints). Math::Prime::Util tries to reconvert all strings back into the
 callers bigint type if possible, which makes it more convenient for
 calculations.