libobject-realize-later-perl 0.21-2 source package in Ubuntu

Changelog

libobject-realize-later-perl (0.21-2) unstable; urgency=medium

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

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

 -- Jelmer Vernooij <email address hidden>  Sat, 19 Nov 2022 20:42:56 +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 universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libobject-realize-later-perl_0.21-2.dsc 2.2 KiB a3ca2a63643780f6738c3fd894bb6dada6a5969225a54fed5d1c25f3872128f7
libobject-realize-later-perl_0.21.orig.tar.gz 12.1 KiB 8f7b9640cc8e34ea92bcf6c01049a03c145e0eb46e562275e28dddd3a8d6d8d9
libobject-realize-later-perl_0.21-2.debian.tar.xz 3.3 KiB e39b21d702923aabf2ce5d1b5f29e391991de8520c85d8021dead27c400172f9

Available diffs

No changes file available.

Binary packages built by this source

libobject-realize-later-perl: Perl module providing delayed creation of objects

 The Object::Realize::Later class helps with implementing transparent
 on demand realization of object data. This is related to the tricks
 on autoloading of data, the lesser known cousin of autoloading of
 functionality.
 .
 On demand realization is all about performance gain. Why should you
 spent costly time on realizing an object, when the data on the object is
 never (or not yet) used? In interactive programs, postponed realization
 may boost start-up: the realization of objects is triggered by the
 use, so spread over time.