libhash-merge-perl 0.300-ok1 source package in openKylin

Changelog

libhash-merge-perl (0.300-ok1) yangtze; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Mon, 25 Apr 2022 22:03:04 +0800

Upload details

Uploaded by:
openKylinBot
Sponsored by:
luzp
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libhash-merge-perl_0.300.orig.tar.gz 13.6 KiB 402fd52191d51415bb7163b7673fb4a108e3156493d7df931b8db4b2af757c40
libhash-merge-perl_0.300-ok1.debian.tar.xz 2.0 KiB 0b4cfba6add4fa3a0d3da85dd5447e9d815416a44f3a8c981a281e71afcc3134
libhash-merge-perl_0.300-ok1.dsc 1.9 KiB ea01988a0acde0e10cbc507b4581cec5f301572abcf070b2df1c99d5d87d00c6

View changes file

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).