libtree-simple-perl 1.22-1 source package in Ubuntu

Changelog

libtree-simple-perl (1.22-1) unstable; urgency=low


  [ gregor herrmann ]
  * debian/control: Added: ${misc:Depends} to Depends: field.
  * Email change: gregor herrmann -> <email address hidden>
  * Set Standards-Version to 3.9.1; remove version from perl (build)
    dependency.

  [ Ansgar Burchardt ]
  * debian/control: Convert Vcs-* fields to Git.

  [ gregor herrmann ]
  * debian/control: update {versioned,alternative} (build) dependencies.

  [ Salvatore Bonaccorso ]
  * Change search.cpan.org based URIs to metacpan.org based URIs

  [ gregor herrmann ]
  * New upstream release.
  * Switch to "3.0 (quilt)" source format.
  * Use debhelper 8 and dh(1) in debian/rules. Don't install boilerplate
    README anymore.
  * debian/copyright: switch formatting to Copyright-Format 1.0.
  * Build depend on Module::Build 0.40.
  * Drop build dependencies on libtest-pod*.
  * Update short and long description.
  * Add build dependency on libtest-memory-cycle-perl.
  * Add a patch to fix a spelling mistake.
  * Declare compliance with Debian Policy 3.9.5.

 -- gregor herrmann <email address hidden>  Sat, 09 Nov 2013 00:16:52 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libtree-simple-perl_1.22-1.dsc 2.2 KiB c0c9d37b7a5ca7f74b2c03ebbfe04468ca953dc98328d472246fd9a72124ebd4
libtree-simple-perl_1.22.orig.tar.gz 43.6 KiB 9a9cdfc4131401346fff9a933fc525b7292ca8661940db2f452c637038e359e1
libtree-simple-perl_1.22-1.debian.tar.gz 4.4 KiB 0335d7fa51c74980195cd251ae2a7dffd7f1a4e6b4173b94a2235662651d3961

Available diffs

No changes file available.

Binary packages built by this source

libtree-simple-perl: implementation of a simple tree object

 Tree::Simple is a fully object-oriented implementation of a simple
 n-ary tree. It is built upon the concept of parent-child
 relationships, so therefore every Tree::Simple object has both a
 parent and a set of children (who themselves may have children, and so
 on). Every Tree::Simple object also has siblings, as they are just the
 children of their immediate parent.
 .
 It can be used to model hierarchal information such as a file-system,
 the organizational structure of a company, an object inheritance
 hierarchy, versioned files from a version control system or even an
 abstract syntax tree for use in a parser. It makes no assumptions as
 to your intended usage, but instead simply provides the structure and
 means of accessing and traversing said structure.
 .
 This module uses exceptions and a minimal Design By Contract
 style. All method arguments are required unless specified in the
 documentation, if a required argument is not defined an exception will
 usually be thrown. Many arguments are also required to be of a
 specific type, for instance the $parent argument to the constructor
 must be a Tree::Simple object or an object derived from Tree::Simple,
 otherwise an exception is thrown.