lib/javonet-ruby-sdk/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Build/Tiny.pm in javonet-ruby-sdk-2.1.9 vs lib/javonet-ruby-sdk/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Build/Tiny.pm in javonet-ruby-sdk-2.1.10

- old
+ new

@@ -1,7 +1,7 @@ package Module::Build::Tiny; -$Module::Build::Tiny::VERSION = '0.046'; +$Module::Build::Tiny::VERSION = '0.047'; use strict; use warnings; use Exporter 5.57 'import'; our @EXPORT = qw/Build Build_PL/; @@ -97,14 +97,14 @@ (my $pm = $pl_file) =~ s/\.PL$//; system $^X, $pl_file, $pm and die "$pl_file returned $?\n"; } my %modules = map { $_ => catfile('blib', $_) } find(qr/\.pm$/, 'lib'); my %docs = map { $_ => catfile('blib', $_) } find(qr/\.pod$/, 'lib'); - my %scripts = map { $_ => catfile('blib', $_) } find(qr//, 'script'); + my %scripts = map { $_ => catfile('blib', $_) } find(qr/(?:)/, 'script'); my %sdocs = map { $_ => delete $scripts{$_} } grep { /.pod$/ } keys %scripts; - my %dist_shared = map { $_ => catfile(qw/blib lib auto share dist/, $opt{meta}->name, abs2rel($_, 'share')) } find(qr//, 'share'); - my %module_shared = map { $_ => catfile(qw/blib lib auto share module/, abs2rel($_, 'module-share')) } find(qr//, 'module-share'); + my %dist_shared = map { $_ => catfile(qw/blib lib auto share dist/, $opt{meta}->name, abs2rel($_, 'share')) } find(qr/(?:)/, 'share'); + my %module_shared = map { $_ => catfile(qw/blib lib auto share module/, abs2rel($_, 'module-share')) } find(qr/(?:)/, 'module-share'); pm_to_blib({ %modules, %docs, %scripts, %dist_shared, %module_shared }, catdir(qw/blib lib auto/)); make_executable($_) for values %scripts; mkpath(catdir(qw/blib arch/), $opt{verbose}); my $main_xs = join('/', 'lib', split /-/, $opt{meta}->name) . '.xs'; for my $xs (find(qr/.xs$/, 'lib')) { @@ -200,10 +200,10 @@ Module::Build::Tiny - A tiny replacement for Module::Build =head1 VERSION -version 0.046 +version 0.047 =head1 SYNOPSIS use Module::Build::Tiny; Build_PL();