libmath-nocarry-perl 1.113-1 source package in Ubuntu

Changelog

libmath-nocarry-perl (1.113-1) unstable; urgency=medium

  [ gregor herrmann ]
  * debian/copyright: replace tabs with spaces / remove trailing
    whitespace.
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Submit.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).

  [ gregor herrmann ]
  * Import upstream version 1.113.
  * Update years of upstream copyright.
  * Declare compliance with Debian Policy 4.5.1.
  * Set Rules-Requires-Root: no.
  * Annotate test-only build dependencies with <!nocheck>.
  * Bump debhelper-compat to 13.

 -- gregor herrmann <email address hidden>  Sat, 16 Jan 2021 18:08:28 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe perl
Lunar release universe perl
Jammy release universe perl

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-nocarry-perl_1.113-1.dsc 2.4 KiB 43c278ce9934f6f438b35ed10aa31717838f75e7bfc379bb82bdcdec57118743
libmath-nocarry-perl_1.113.orig.tar.gz 10.0 KiB db71396c70d20a134f7eb99f263506ad29fef3435403a8316ad0b7811ea46fa5
libmath-nocarry-perl_1.113-1.debian.tar.xz 6.5 KiB 9b77c4f9317fd7153bdfb9eb59bfc2f85ffadecb07c1a8ba7f92f6139753f773

Available diffs

No changes file available.

Binary packages built by this source

libmath-nocarry-perl: Perl module for no carry arithmetic

 The perl module Math::NoCarry implememnts no carry arithmetic which
 doesn't allow you to carry digits to the next column. For example,
 if you add 8 and 4, you normally expect the answer to be 12, but that
 1 digit is a carry. In no carry arithmetic you can't do that, so the
 sum of 8 and 4 is just 2. In effect, this is addition modulo 10 in
 each column. The following example discards all of the carry digits:
 .
  1234
  + 5678
  ------
  6802
 .
 For multiplication, the result of pair-wise multiplication
 of digits is the modulo 10 value of their normal, everyday
 multiplication.