libobject-container-perl 0.16-1 source package in Ubuntu

Changelog

libobject-container-perl (0.16-1) unstable; urgency=medium

  * Team upload.
  * Import upstream version 0.16.
  * Remove information about dropped third-party files.
  * Update build dependencies.
  * debian/rules: update path for manpage recreation.
  * Update comment in lintian override.

 -- gregor herrmann <email address hidden>  Fri, 22 Jul 2022 14:02:09 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libobject-container-perl_0.16-1.dsc 2.6 KiB ff2c14b24576e489f52c983131f6dd137ecd14ebc6c36781028ff8283032e188
libobject-container-perl_0.16.orig.tar.gz 23.9 KiB d265b8ce8fd82509e817d13d1c618c4eb410e5d3f06ccdc94fa3806442a40769
libobject-container-perl_0.16-1.debian.tar.xz 2.6 KiB 3e970789de117f0f3fb03d95df9db76d5a635d1d3533f71c23dfd26397b115c4

Available diffs

No changes file available.

Binary packages built by this source

libobject-container-perl: module that provides a simple object container

 Object::Container is an object container with an OO interface. It is
 used to make singletons out of ordinary classes.
 .
 For example, if you want to have a single instance of WWW::Mechanize
 throughout a program, you can do
 Object::Container->register('WWW::Mechanize') somewhere and then you
 can retrieve that instance of WWW::Mechanize from anywhere else with
 Object::Container->get('WWW::Mechanize');
 .
 Class::Singleton is a similar module, which makes subclasses
 singletons. Unlike Class::Singleton, Object::Container can make any
 class a singleton.
 .
 Object::Registrar is another similar module, but it does not support
 lazy loading.