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

Changelog

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

  * Build for openkylin.

 -- denghao <email address hidden>  Tue, 13 Sep 2022 08:54:53 +0300

Upload details

Uploaded by:
denghao
Sponsored by:
Cibot
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
Nile V2.0 proposed main perl
Nile V2.0 release main perl
Yangtze V1.0 release main perl
Yangtze V1.0 proposed main perl

Downloads

File Size SHA-256 Checksum
libhash-merge-perl_0.302.orig.tar.gz 13.8 KiB ae0522f76539608b61dde14670e79677e0f391036832f70a21f31adde2538644
libhash-merge-perl_0.302-ok1.debian.tar.xz 2.0 KiB a2b6eced65f45f9cd9dd9e15b04e8af619207828bb6b3b88dfd58f9eebe6607a
libhash-merge-perl_0.302-ok1.dsc 1.8 KiB 69704b115ede954133305c6dbe280b4edaefdac1aec8710028edd5b385f3ab02

Available diffs

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