libtie-toobject-perl 0.03-3 source package in Ubuntu

Changelog

libtie-toobject-perl (0.03-3) unstable; urgency=low

  [ gregor herrmann ]
  * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
    (source stanza).

  [ Nathan Handler ]
  * debian/watch: Update to ignore development releases.

  [ gregor herrmann ]
  * Email change: gregor herrmann -> <email address hidden>

  [ Fabrizio Regalli ]
  * Bump to 3.9.2 Standard-Version.
  * Switch to DEP5 license format.
  * Add myself to Uploaders.
  * Switch to debhelper (>= 8).
  * Bump to 3.0 quilt format.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Sun,  12 Jun 2011 12:47:32 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Xenial release universe perl
Trusty release universe perl
Precise release universe perl

Builds

Oneiric: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libtie-toobject-perl_0.03.orig.tar.gz 2.9 KiB a31a0d4430fe14f59622f31db7f25b2275dad2ec52f1040beb030d3e83ad3af4
libtie-toobject-perl_0.03-3.debian.tar.gz 2.2 KiB 67ec0dc579266750aa17de6a4e82706022f8c3a419beaea8708b92ae4f36e96c
libtie-toobject-perl_0.03-3.dsc 2.1 KiB 442b19c189d13b249303acbf00a926ce1b5842e3e98896c65b90e17c78dfbe3e

Available diffs

View changes file

Binary packages built by this source

libtie-toobject-perl: module for tying to an existing object

 While perldoc/tie allows tying to an arbitrary object, the class in question
 must support this in it's implementation of TIEHASH, TIEARRAY or
 whatever.
 .
 Tie::ToObject class provides a very tie constructor that simply returns the
 object it was given as it's first argument. This way side effects of calling
 $object->TIEHASH are avoided.
 .
 This is used in Data::Visitor in order to tie a variable to an already
 existing object. This is also useful for cloning, when you want to clone the
 internal state object instead of going through the tie interface for that
 variable.