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

Changelog

libobject-realize-later-perl (0.18-2) unstable; urgency=low

  [ gregor herrmann ]
  * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
    field (source stanza); Homepage field (source stanza).
  * Set Maintainer to Debian Perl Group.
  * Use dist-based URL in debian/watch.
  * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
    (source stanza).
  * debian/control: Added: ${misc:Depends} to Depends: field.

  [ Ansgar Burchardt ]
  * debian/watch: Use extended regexp to match upstream releases.
  * Bump Standards-Version to 3.8.2.
  * Refresh rules for debhelper 7.
  * Add myself to Uploaders.
  * Convert debian/copyright to proposed machine-readable format.
  * Add build-dep on libtest-pod-perl to enable an additional test.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Thu,  05 Nov 2009 10:36:33 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Lucid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe perl

Builds

Lucid: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libobject-realize-later-perl_0.18.orig.tar.gz 10.3 KiB 79a23870cd6545af9905edfa710069c17792700c0313d632db27e8923e4f0422
libobject-realize-later-perl_0.18-2.diff.gz 2.2 KiB 476b7bd89d69b9a9a18e0487cfdad390b459694725bd4d0ce6e73f803200d6c7
libobject-realize-later-perl_0.18-2.dsc 1.5 KiB aa49d7f1a4b2e7872eb17c8d4fcd39c07d77adfa3f78c118b39b815aa2c278e1

Available diffs

View changes file

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.