libmath-nocarry-perl 1.11-3 source package in Ubuntu

Changelog

libmath-nocarry-perl (1.11-3) unstable; urgency=medium

  * Team upload

  [ gregor herrmann ]
  * Add debian/README.source to document quilt usage, as required by
    Debian Policy since 3.8.0.
  * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
    (source stanza).
  * debian/control: update {versioned,alternative} (build) dependencies.

  [ Nathan Handler ]
  * debian/watch: Update to ignore development releases.

  [ Ansgar Burchardt ]
  * debian/control: Convert Vcs-* fields to Git.

  [ Salvatore Bonaccorso ]
  * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  * Change search.cpan.org based URIs to metacpan.org based URIs
  * Update Vcs-Browser URL to cgit web frontend

  [ gregor herrmann ]
  * Strip trailing slash from metacpan URLs.

  [ Axel Beckert ]
  * debian/copyright: Use David Moreno Garza's @debian.org address.
  * Bump debhelper compatibility to 8
    + Update versioned debhelper build-dependency accordingly.
  * Switch to source format "quilt (3.0)"
    + Remove debian/README.source.
    + Remove quilt build-dependency.
  * Revamp debian/rules
    + Use dh_auto_{configure,build,install,test,clean}
    + Replace "dh_clean -k" by "dh_prep".
    + Drop now redundant parameters to dh_clean and dh_installchangelogs.
    + Remove now obsolete /usr/lib/perl5 cleanup.
    + Finally switch to a minimal dh v7 style debian/rules file.
  * Mark package aus autopkgtestable.
  * Mention module name in package description and remove first person.
  * Apply wrap-and-sort.
  * Add DEP3 compliant patch headers to debian/patches/manpage_section.
  * debian/copyright: Convert to machine-readable DEP5 format.
  * Declare compliance with Debian Policy 3.9.6 (no other changes needed).

 -- Axel Beckert <email address hidden>  Sun, 31 May 2015 02:42:18 +0200

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
Xenial release universe perl

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-nocarry-perl_1.11-3.dsc 2.1 KiB 3daa2a3729f77381f0b5ae67c2d1f72a412d59c5713fbd3213339cb2d5b2663d
libmath-nocarry-perl_1.11.orig.tar.gz 4.5 KiB 30be4328c4df5599e066d9f267e9b64af58f3930556f5b65423d17a45a1c4c22
libmath-nocarry-perl_1.11-3.debian.tar.xz 3.4 KiB 3c6906d63006bbf4b6a51e04e8b224305fa6bba1ca87c22ee42c265c4f930fce

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.