libtime-duration-perl 1.21-2 source package in Ubuntu

Changelog

libtime-duration-perl (1.21-2) unstable; urgency=medium

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata (already present in machine-readable debian/copyright).
  * Update standards version to 4.5.0, no changes needed.
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.5.1, no changes needed.
  * Update standards version to 4.6.0, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Tue, 06 Dec 2022 16:19:41 +0000

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
Oracular release main perl
Noble release main perl
Mantic release main perl
Lunar release main perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtime-duration-perl_1.21-2.dsc 2.2 KiB dbdb5a46ddaa9f4d30f7e577020c3786aa0c3d4de75ffe065dbacf5cd640a369
libtime-duration-perl_1.21.orig.tar.gz 15.8 KiB fe340eba8765f9263694674e5dff14833443e19865e5ff427bbd79b7b5f8a9b8
libtime-duration-perl_1.21-2.debian.tar.xz 3.0 KiB d6f098360dc692f33c0f65daa4f536a40ccdceada346d869d2c3bf35e3b9d5a5

Available diffs

No changes file available.

Binary packages built by this source

libtime-duration-perl: module for rounded or exact English expression of durations

 Time::Duration provides functions for expressing time spans in rounded
 or exact terms. So while
 .
    say duration_exact(86399);
 .
 will correctly give "23 hours, 59 minutes, and 59 seconds",
 .
    say ago(86399);
 .
 will output the rounded time span as "1 day ago".
 .
 The provided functions are duration(), ago(), from_now(), later() and
 earlier(), along with their *_exact counterparts. The precision used
 for rounding can be specified, and version 1.10 added a millisecond
 mode.