Use Clone backend for Hash::Merge, not Storable (#58)

Use Clone backend for Hash::Merge, not Storable
This commit is contained in:
Adam Spiers 2019-06-28 21:57:08 +01:00 committed by GitHub
commit 2a4c3d3120
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 2 deletions

View file

@ -61,6 +61,7 @@ my $build = Module::Build->new(
'Carp' => 0,
'IO::File' => 0,
'Hash::Merge' => 0,
'Clone' => 0,
},
script_files => [ 'bin/stow', 'bin/chkstow' ],
all_from => 'lib/Stow.pm.in',

View file

@ -29,6 +29,7 @@
"runtime" : {
"requires" : {
"Carp" : "0",
"Clone" : "0",
"Hash::Merge" : "0",
"IO::File" : "0",
"perl" : "5.006"

View file

@ -24,6 +24,7 @@ provides:
version: v2.3.0
requires:
Carp: '0'
Clone: '0'
Hash::Merge: '0'
IO::File: '0'
perl: '5.006'

View file

@ -105,7 +105,7 @@ MAINTAINERCLEANFILES = $(dist_man_MANS) $(HTML) $(PDF) ChangeLog
clean-local:
-rm -rf $(TESTS_OUT)
maintainer-clean-local:
-rm -rf doc/manual-split
-rm -rf doc/manual-split cover_db
# this is more explicit and reliable than the config file trick
edit = sed -e 's|[@]PERL[@]|$(PERL)|g' \

View file

@ -462,7 +462,10 @@ use Getopt::Long qw(GetOptionsFromArray);
use Stow;
use Stow::Util qw(parent error);
use Hash::Merge qw( merge );
# Need to avoid Storable backend, since it can't deal with regexps:
# https://rt.perl.org/Public/Bug/Display.html?id=50608
use Clone::Choose qw(:Clone);
use Hash::Merge qw(merge);
my $ProgramName = $0;
$ProgramName =~ s{.*/}{};