libtree-simple-visitorfactory-perl 0.10-2 source package in Ubuntu

Changelog

libtree-simple-visitorfactory-perl (0.10-2) unstable; urgency=low

  [ gregor herrmann ]
  * Take over for the Debian Perl Group with maintainer's permission
    (http://lists.debian.org/debian-perl/2008/06/msg00039.html)
  * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
    field (source stanza); Homepage field (source stanza). Changed:
    Maintainer set to Debian Perl Group <pkg-perl-
    <email address hidden>> (was: Florian Ragwitz
    <email address hidden>); Florian Ragwitz <email address hidden> moved to
    Uploaders.
  * Add debian/watch.
  * debian/control: Added: ${misc:Depends} to Depends: field.

  [ Ryan Niebur ]
  * Remove Florian Ragwitz from Uploaders
  * Close ITA (Closes: #523143)

  [ Ansgar Burchardt ]
  * Refresh rules for debhelper 7.
  * Convert debian/copyright to proposed machine-readable format.
  * Use source format 3.0 (quilt).
  * debian/control: Mention module name in description.
  * Remove patch-stamp (useless).
  * Correct spelling errors.
    + new patch: spelling.patch
  * Bump Standards-Version to 3.8.4.
  * Add myself to Uploaders.

  [ gregor herrmann ]
  * debian/control: remove version from (build) dependencies, all fulfilled in
    oldstable.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Sun,  09 May 2010 13:56:19 +0100

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Maverick
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

Maverick: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libtree-simple-visitorfactory-perl_0.10.orig.tar.gz 27.3 KiB a804dcdd5a635c8056fa681c796da36a0483523f43290209f412ef3e967d0cbe
libtree-simple-visitorfactory-perl_0.10-2.debian.tar.gz 3.2 KiB 40737589e8563a8a68b33c1269e200c9e67147e1cd76b14c4e87e676e936a3ed
libtree-simple-visitorfactory-perl_0.10-2.dsc 2.2 KiB 3d3c6c321ae616c97bef467cbbedf7fd9f76835c59f203d8dec7122f53331d9e

Available diffs

View changes file

Binary packages built by this source

libtree-simple-visitorfactory-perl: collection of dispensing visitor objects for Tree::Simple

 The Tree::Simple::VisitorFactory module contains a number of visitor objects
 which can perform various tasks on Tree::Simple objects.
 .
 The following visitors are included:
  * PathToRoot: find the path back to the tree's root node
  * FindByPath: find the node specified by a path
  * FindByUID: find the node with the same UID
  * FindByNodeValue: find the node with the same node value
  * BreadthFirstTraversal: implements a breadth-first traversal
  * PostOrderTraversal: implements a post-order traversal
  * PreOrderTraversal: implements a pre-order traversal
  * LoadDirectoryTree: load a directory tree into a Tree::Simple hierarchy
  * CreateDirectoryTree: create a set of directories and files from a
    Tree::Simple hierarchy
  * FromNestedArray: create a Tree::Simple hierarchy from nested arrays
  * ToNestedArray: create a nested array construct from a Tree::Simple hierarchy
  * Tree::Simple::Visitor::VariableDepthClone: clone parts of Tree hierarchies
  * FromNestedHash: create a Tree::Simple hierarchy from nested hashes
  * ToNestedHash: create a nested hash construct from a Tree::Simple hierarchy
  * LoadClassHierarchy: create a Tree::Simple hierarchy which models the classes
    inheritance heirarchy
  * GetAllDescendents: return all the descendents recursively on down the
    hierarchy
  * Sort: implements a multi-level sort of a Tree::Simple heirarchy