forked from pool/perl-Hash-Merge
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Hash-Merge?expand=0&rev=9
79 lines
2.8 KiB
RPMSpec
79 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package perl-Hash-Merge
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: perl-Hash-Merge
|
|
Version: 0.200
|
|
Release: 0
|
|
%define cpan_name Hash-Merge
|
|
Summary: Merges arbitrarily deep hashes into a single hash
|
|
License: Artistic-1.0 or GPL-1.0+
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/Hash-Merge/
|
|
Source: http://www.cpan.org/authors/id/R/RE/REHSACK/%{cpan_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Clone)
|
|
BuildRequires: perl(Test::More) >= 0.9
|
|
#BuildRequires: perl(Clone::PP)
|
|
#BuildRequires: perl(Hash::Merge)
|
|
Requires: perl(Clone)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
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').
|
|
|
|
Because there are a number of possible ways that one may want to merge
|
|
values when keys are conflicting, Hash::Merge provides several preset
|
|
methods for your convenience, as well as a way to define you own.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
find . -type f -print0 | xargs -0 chmod 644
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc Changes README
|
|
|
|
%changelog
|