File: control

package info (click to toggle)
libmath-bigint-perl 1.999808-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,788 kB
  • ctags: 404
  • sloc: perl: 41,803; pascal: 5,184; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,203 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Source: libmath-bigint-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>,
           Alessandro Ghedini <ghedo@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: perl,
                     libtest-pod-perl,
                     libtest-pod-coverage-perl
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmath-bigint-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libmath-bigint-perl.git
Homepage: https://metacpan.org/release/Math-BigInt

Package: libmath-bigint-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Description: arbitrary size integer/float math package
 Math::BigInt and Math::BigFloat allow one to declare big integers / floating
 point numbers as
 .
  $i = new Math::BigInt '123_456_789_123_456_789';
  $i = new Math::BigFloat '12_3.456_789_123_456_789E-2';
 .
 All operators are overloaded; operations with overloaded operators preserve
 the arguments.
 .
 Math::BigInt is also in perl core, this package provides newer versions
 separately.