libobject-realize-later-perl 0.19-1 source package in Ubuntu
Changelog
libobject-realize-later-perl (0.19-1) unstable; urgency=medium * Team upload. [ Salvatore Bonaccorso ] * debian/control: Changed: Replace versioned (build-)dependency on perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as permitted by Debian Policy 3.8.3). [ Ansgar Burchardt ] * Email change: Ansgar Burchardt -> <email address hidden> * debian/control: Convert Vcs-* fields to Git. [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ Axel Beckert ] * Fix missing field values in debian/copyright * debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg- copyright" [ Salvatore Bonaccorso ] * Imported Upstream version 0.19 * Update copyright years for upstream files * Drop Build-Depends-Indep on libtest-pod-perl * Bump Debhelper compat level to 8. Adjust versioned Build-Depends on debhelper to (>= 8). * Declare compliance with Debian Policy 3.9.5 * Convert to package to '3.0 (quilt)' source package format * Add fix-spelling-error-in-manpage.patch patch * Refresh license stanzas for Artistic and GPL-1+ license. Refer to Debian systems in general instead of only Debian GNU/Linux systems. Explicitly refer to GPL-1 text in common-licenses. -- Salvatore Bonaccorso <email address hidden> Sat, 25 Jan 2014 15:30:19 +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 | Published | Component | Section | |
---|---|---|---|---|
Bionic | release | universe | perl | |
Xenial | release | universe | perl | |
Trusty | release | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libobject-realize-later-perl_0.19-1.dsc | 2.2 KiB | 6ac29e3a996c8f6e513832996485fcc0bc52c15227fa498a7cee629c93ca3897 |
libobject-realize-later-perl_0.19.orig.tar.gz | 10.8 KiB | 7f3de6b6ac5a236636d00dd867012481e1c4878e7e68d136e565ce50b2c2404d |
libobject-realize-later-perl_0.19-1.debian.tar.xz | 3.2 KiB | 967b1c51d9463e72c18ff045340987a4a23669b756cde21542675bd43892cc99 |
Available diffs
- diff from 0.18-2 (in Ubuntu) to 0.19-1 (7.0 KiB)
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.