libhash-merge-perl 0.200-1 source package in Ubuntu

Changelog

libhash-merge-perl (0.200-1) unstable; urgency=low


  * Team upload

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

  [ Salvatore Bonaccorso ]
  * debian/copyright: Replace DEP5 Format-Specification URL from
    svn.debian.org to anonscm.debian.org URL.
  * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  * Change search.cpan.org based URIs to metacpan.org based URIs

  [ Axel Beckert ]
  * debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg-
    copyright"

  [ Damyan Ivanov ]
  * Imported Upstream version 0.200
  * drop trailing slash from metacpan URLs
  * claim conformance with Policy 3.9.5

 -- Damyan Ivanov <email address hidden>  Sat, 09 Nov 2013 13:54:25 +0200

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
Xenial release universe perl
Trusty release universe perl

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libhash-merge-perl_0.200-1.dsc 2.1 KiB 50826ab0a8739e3431d5cefaa498e15b3e5eed835530372017cc97a59ff7d059
libhash-merge-perl_0.200.orig.tar.gz 10.1 KiB 47f9f03330b7595c94e73bdd17dc6682ba59d1cc89e63f4e319617f4bb122a64
libhash-merge-perl_0.200-1.debian.tar.gz 2.5 KiB 9e78a454f1310aff51ad865067b29a802d379c922523919f18aa2dc1887ef0e6

Available diffs

No changes file available.

Binary packages built by this source

libhash-merge-perl: Perl module for merging arbitrarily deep hashes into a single hash

 Hash::Merge merges two arbitrarily deep hashes into a single hash. That
 is, at any level, it will add non-conflicting key-value pairs from one
 hash to the other, and follows a set of specific rules when there are key
 value conflicts (as outlined below). The hash is followed recursively,
 so that deeply nested hashes that are at the same level will be merged
 when the parent hashes are merged. Please note that self-referencing
 hashes, or recursive references, are not handled well by this method.
 .
 Values in hashes are considered to be either ARRAY references,
 HASH references, or otherwise are treated as SCALARs. By default, the
 data passed to the merge function will be cloned using the Clone module;
 however, if necessary, this behavior can be changed to use as many of
 the original values as possible. (See set_clone_behavior).