line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Module::Build::Bundle; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
4099
|
use 5.008; #$^V |
|
1
|
|
|
|
|
5
|
|
4
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
23
|
|
5
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
32
|
|
6
|
1
|
|
|
1
|
|
5
|
use Carp qw(croak); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
57
|
|
7
|
1
|
|
|
1
|
|
4
|
use Cwd qw(getcwd); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
41
|
|
8
|
1
|
|
|
1
|
|
685
|
use Tie::IxHash; |
|
1
|
|
|
|
|
3097
|
|
|
1
|
|
|
|
|
37
|
|
9
|
1
|
|
|
1
|
|
744
|
use English qw( -no_match_vars ); |
|
1
|
|
|
|
|
774
|
|
|
1
|
|
|
|
|
5
|
|
10
|
1
|
|
|
1
|
|
417
|
use File::Slurp; #read_file |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
77
|
|
11
|
1
|
|
|
1
|
|
6
|
use base qw(Module::Build::Base); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
1483
|
|
12
|
1
|
|
|
1
|
|
58623
|
use utf8; |
|
1
|
|
|
|
|
10
|
|
|
1
|
|
|
|
|
6
|
|
13
|
|
|
|
|
|
|
|
14
|
1
|
|
|
1
|
|
34
|
use constant EXTENDED_POD_LINK_VERSION => 5.12.0; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
1995
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
our $VERSION = '0.17'; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
#HACK: we need a writable copy for testing purposes |
19
|
|
|
|
|
|
|
## no critic qw(Variables::ProhibitPackageVars Variables::ProhibitPunctuationVars) |
20
|
|
|
|
|
|
|
our $myPERL_VERSION = $^V; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
sub ACTION_build { |
23
|
0
|
|
|
0
|
1
|
0
|
my $self = shift; |
24
|
|
|
|
|
|
|
|
25
|
0
|
0
|
|
|
|
0
|
if ( !$self->{'_completed_actions'}{'contents'} ) { |
26
|
0
|
|
|
|
|
0
|
$self->ACTION_contents(); |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
0
|
|
|
|
|
0
|
return Module::Build::Base::ACTION_build($self); |
30
|
|
|
|
|
|
|
} |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
sub ACTION_contents { |
33
|
4
|
|
|
4
|
1
|
782033
|
my $self = shift; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
#Fetching requirements from Build.PL |
36
|
4
|
|
|
|
|
15
|
my @list = %{ $self->requires() }; |
|
4
|
|
|
|
|
23
|
|
37
|
|
|
|
|
|
|
|
38
|
4
|
|
100
|
|
|
67
|
my $section_header = $self->notes('section_header') || 'CONTENTS'; |
39
|
|
|
|
|
|
|
|
40
|
4
|
|
|
|
|
162
|
my $sorted = 'Tie::IxHash'->new(@list); |
41
|
4
|
|
|
|
|
264
|
$sorted->SortByKey(); |
42
|
|
|
|
|
|
|
|
43
|
4
|
|
|
|
|
292
|
my $pod = "=head1 $section_header\n\n=over\n\n"; |
44
|
4
|
|
|
|
|
18
|
foreach ( $sorted->Keys ) { |
45
|
7
|
|
|
|
|
56
|
my ( $module, $version ) = $sorted->Shift(); |
46
|
|
|
|
|
|
|
|
47
|
7
|
|
|
|
|
119
|
my $dist = $module; |
48
|
7
|
|
|
|
|
47
|
$dist =~ s/::/\-/g; |
49
|
|
|
|
|
|
|
|
50
|
7
|
|
|
|
|
13
|
my $module_path = $module; |
51
|
7
|
|
|
|
|
41
|
$module_path =~ s[::][/]g; |
52
|
7
|
|
|
|
|
11
|
$module_path .= '.pm'; |
53
|
|
|
|
|
|
|
|
54
|
7
|
100
|
|
|
|
23
|
if ( $myPERL_VERSION ge EXTENDED_POD_LINK_VERSION ) { |
55
|
3
|
100
|
|
|
|
14
|
if ($version) { |
56
|
1
|
|
|
|
|
15
|
$pod .= "=item * L<$module|$module>, " |
57
|
|
|
|
|
|
|
. "L<$version|http://search.cpan.org/dist/$dist-$version/lib/$module_path>\n\n"; |
58
|
|
|
|
|
|
|
} else { |
59
|
2
|
|
|
|
|
12
|
$pod .= "=item * L<$module|$module>\n\n"; |
60
|
|
|
|
|
|
|
} |
61
|
|
|
|
|
|
|
} else { |
62
|
4
|
100
|
|
|
|
16
|
if ($version) { |
63
|
2
|
|
|
|
|
54
|
$pod .= "=item * L<$module|$module>, $version\n\n"; |
64
|
|
|
|
|
|
|
} else { |
65
|
2
|
|
|
|
|
10
|
$pod .= "=item * L<$module|$module>\n\n"; |
66
|
|
|
|
|
|
|
} |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
} |
69
|
4
|
|
|
|
|
15
|
$pod .= "=back\n\n=head1"; |
70
|
|
|
|
|
|
|
|
71
|
4
|
|
|
|
|
24
|
my $cwd = getcwd(); |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
my @path = split /::/, $self->{properties}->{module_name} |
74
|
4
|
|
33
|
|
|
30
|
|| $self->{properties}->{module_name}; |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
#HACK: induced from test suite |
77
|
4
|
50
|
|
|
|
18
|
my $dir = $self->notes('temp_wd') ? $self->notes('temp_wd') : $cwd .'/t/'; |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
## no critic qw(ValuesAndExpressions::ProhibitNoisyQuotes) |
80
|
4
|
|
|
|
|
205
|
my $file = ( join '/', ( $dir, @path ) ) . '.pm'; |
81
|
|
|
|
|
|
|
|
82
|
4
|
50
|
|
|
|
40
|
my $contents = read_file($file) or croak "Unable to read file: $file - $!"; |
83
|
|
|
|
|
|
|
|
84
|
3
|
|
|
|
|
381
|
my $rv = $contents =~ s/=head1\s*$section_header\s*.*=head1/$pod/s; |
85
|
|
|
|
|
|
|
|
86
|
3
|
50
|
|
|
|
11
|
if ( !$rv ) { |
87
|
0
|
|
|
|
|
0
|
croak "No $section_header section replaced"; |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
|
90
|
3
|
50
|
|
|
|
209
|
open my $fout, '>', $file |
91
|
|
|
|
|
|
|
or croak "Unable to open file: $file - $!"; |
92
|
|
|
|
|
|
|
|
93
|
3
|
|
|
|
|
15
|
print $fout $contents; |
94
|
|
|
|
|
|
|
|
95
|
3
|
50
|
|
|
|
261
|
close $fout or croak "Unable to close file: $file - $!"; |
96
|
|
|
|
|
|
|
|
97
|
3
|
|
|
|
|
51
|
return 1; |
98
|
|
|
|
|
|
|
} |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
#Lifted from Module::Build::Base |
101
|
|
|
|
|
|
|
sub do_create_metafile { |
102
|
1
|
|
|
1
|
1
|
66514
|
my $self = shift; |
103
|
1
|
50
|
|
|
|
15
|
return if $self->{wrote_metadata}; |
104
|
1
|
|
|
|
|
9
|
my $p = $self->{properties}; |
105
|
|
|
|
|
|
|
|
106
|
1
|
50
|
|
|
|
11
|
unless ($p->{license}) { |
107
|
0
|
|
|
|
|
0
|
$self->log_warn("No license specified, setting license = 'unknown'\n"); |
108
|
0
|
|
|
|
|
0
|
$p->{license} = 'unknown'; |
109
|
|
|
|
|
|
|
} |
110
|
|
|
|
|
|
|
|
111
|
1
|
|
|
|
|
11
|
my @metafiles = ( $self->metafile, $self->metafile2 ); |
112
|
|
|
|
|
|
|
# If we're in the distdir, the metafile may exist and be non-writable. |
113
|
1
|
|
|
|
|
49
|
$self->delete_filetree($_) for @metafiles; |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
# Since we're building ourself, we have to do some special stuff |
116
|
|
|
|
|
|
|
# here: the ConfigData module is found in blib/lib. |
117
|
1
|
|
|
|
|
123
|
local @INC = @INC; |
118
|
1
|
50
|
50
|
|
|
10
|
if (($self->module_name || '') eq 'Module::Build') { |
119
|
0
|
|
|
|
|
0
|
$self->depends_on('config_data'); |
120
|
0
|
|
|
|
|
0
|
push @INC, File::Spec->catdir($self->blib, 'lib'); |
121
|
|
|
|
|
|
|
} |
122
|
|
|
|
|
|
|
|
123
|
1
|
|
|
|
|
56
|
my $meta_obj = $self->_get_meta_object( |
124
|
|
|
|
|
|
|
quiet => 0, fatal => 1, auto => 1 |
125
|
|
|
|
|
|
|
); |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
#JONASBN: Changed file parameter |
128
|
1
|
|
|
|
|
587
|
my @created = $self->_write_meta_files( $meta_obj, $self->metafile ); |
129
|
|
|
|
|
|
|
|
130
|
1
|
50
|
|
|
|
29516
|
if ( @created ) { |
131
|
1
|
|
|
|
|
11
|
$self->{wrote_metadata} = 1; |
132
|
1
|
|
|
|
|
12
|
$self->_add_to_manifest('MANIFEST', $_) for @created; |
133
|
|
|
|
|
|
|
} |
134
|
1
|
|
|
|
|
703
|
return 1; |
135
|
|
|
|
|
|
|
} |
136
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
#lifted from Module::Build::Base, sets generated_by |
138
|
|
|
|
|
|
|
sub get_metadata { |
139
|
1
|
|
|
1
|
1
|
484
|
my ($self, %args) = @_; |
140
|
|
|
|
|
|
|
|
141
|
1
|
|
50
|
|
|
7
|
my $fatal = $args{fatal} || 0; |
142
|
1
|
|
|
|
|
5
|
my $p = $self->{properties}; |
143
|
|
|
|
|
|
|
|
144
|
1
|
50
|
|
|
|
21
|
$self->auto_config_requires if $args{auto}; |
145
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
# validate required fields |
147
|
1
|
|
|
|
|
330
|
foreach my $f (qw(dist_name dist_version dist_author dist_abstract license)) { |
148
|
5
|
|
|
|
|
51
|
my $field = $self->$f(); |
149
|
5
|
50
|
33
|
|
|
114
|
unless ( defined $field and length $field ) { |
150
|
0
|
|
|
|
|
0
|
my $err = "ERROR: Missing required field '$f' for metafile\n"; |
151
|
0
|
0
|
|
|
|
0
|
if ( $fatal ) { |
152
|
0
|
|
|
|
|
0
|
die $err; |
153
|
|
|
|
|
|
|
} |
154
|
|
|
|
|
|
|
else { |
155
|
0
|
|
|
|
|
0
|
$self->log_warn($err); |
156
|
|
|
|
|
|
|
} |
157
|
|
|
|
|
|
|
} |
158
|
|
|
|
|
|
|
} |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
my %metadata = ( |
161
|
|
|
|
|
|
|
name => $self->dist_name, |
162
|
|
|
|
|
|
|
version => $self->normalize_version($self->dist_version), |
163
|
|
|
|
|
|
|
author => $self->dist_author, |
164
|
|
|
|
|
|
|
abstract => $self->dist_abstract, |
165
|
|
|
|
|
|
|
#JONASBN changed the generated_by |
166
|
|
|
|
|
|
|
generated_by => "Module::Build::Bundle version $Module::Build::Bundle::VERSION", |
167
|
|
|
|
|
|
|
'meta-spec' => { |
168
|
|
|
|
|
|
|
version => '2', |
169
|
|
|
|
|
|
|
url => 'http://search.cpan.org/perldoc?CPAN::Meta::Spec', |
170
|
|
|
|
|
|
|
}, |
171
|
1
|
50
|
|
|
|
6
|
dynamic_config => exists $p->{dynamic_config} ? $p->{dynamic_config} : 1, |
172
|
|
|
|
|
|
|
release_status => $self->release_status, |
173
|
|
|
|
|
|
|
); |
174
|
|
|
|
|
|
|
|
175
|
1
|
|
|
|
|
186
|
my ($meta_license, $meta_license_url) = $self->_get_license; |
176
|
1
|
|
|
|
|
88363
|
$metadata{license} = [ $meta_license ]; |
177
|
1
|
50
|
|
|
|
9
|
$metadata{resources}{license} = [ $meta_license_url ] if defined $meta_license_url; |
178
|
|
|
|
|
|
|
|
179
|
1
|
|
|
|
|
16
|
$metadata{prereqs} = $self->_normalize_prereqs; |
180
|
|
|
|
|
|
|
|
181
|
1
|
50
|
|
|
|
125
|
if (exists $p->{no_index}) { |
|
|
50
|
|
|
|
|
|
182
|
0
|
|
|
|
|
0
|
$metadata{no_index} = $p->{no_index}; |
183
|
1
|
|
|
|
|
55
|
} elsif (my $pkgs = eval { $self->find_dist_packages }) { |
184
|
1
|
50
|
|
|
|
24019
|
$metadata{provides} = $pkgs if %$pkgs; |
185
|
|
|
|
|
|
|
} else { |
186
|
0
|
|
|
|
|
0
|
$self->log_warn("$@\nWARNING: Possible missing or corrupt 'MANIFEST' file.\n" . |
187
|
|
|
|
|
|
|
"Nothing to enter for 'provides' field in metafile.\n"); |
188
|
|
|
|
|
|
|
} |
189
|
|
|
|
|
|
|
|
190
|
1
|
50
|
|
|
|
27
|
if (my $add = $self->meta_add) { |
191
|
1
|
50
|
33
|
|
|
21
|
if (not exists $add->{'meta-spec'} or $add->{'meta-spec'}{version} != 2) { |
192
|
1
|
|
|
|
|
19
|
require CPAN::Meta::Converter; |
193
|
1
|
50
|
|
|
|
34
|
if (CPAN::Meta::Converter->VERSION('2.141170')) { |
194
|
1
|
|
|
|
|
14
|
$add = CPAN::Meta::Converter->new($add)->upgrade_fragment; |
195
|
1
|
|
|
|
|
1985
|
delete $add->{prereqs}; # XXX this would now overwrite all prereqs |
196
|
|
|
|
|
|
|
} |
197
|
|
|
|
|
|
|
else { |
198
|
0
|
|
|
|
|
0
|
$self->log_warn("Can't meta_add without CPAN::Meta 2.141170"); |
199
|
|
|
|
|
|
|
} |
200
|
|
|
|
|
|
|
} |
201
|
|
|
|
|
|
|
|
202
|
1
|
|
|
|
|
10
|
while (my($k, $v) = each %{$add}) { |
|
2
|
|
|
|
|
9
|
|
203
|
1
|
|
|
|
|
6
|
$metadata{$k} = $v; |
204
|
|
|
|
|
|
|
} |
205
|
|
|
|
|
|
|
} |
206
|
|
|
|
|
|
|
|
207
|
1
|
50
|
|
|
|
11
|
if (my $merge = $self->meta_merge) { |
208
|
1
|
50
|
|
|
|
11
|
if (eval { require CPAN::Meta::Merge }) { |
|
1
|
|
|
|
|
953
|
|
209
|
1
|
|
|
|
|
2151
|
%metadata = %{ CPAN::Meta::Merge->new(default_version => '1.4')->merge(\%metadata, $merge) }; |
|
1
|
|
|
|
|
5
|
|
210
|
|
|
|
|
|
|
} |
211
|
|
|
|
|
|
|
else { |
212
|
0
|
|
|
|
|
0
|
$self->log_warn("Can't merge without CPAN::Meta::Merge"); |
213
|
|
|
|
|
|
|
} |
214
|
|
|
|
|
|
|
} |
215
|
|
|
|
|
|
|
|
216
|
1
|
|
|
|
|
7174
|
return \%metadata; |
217
|
|
|
|
|
|
|
} |
218
|
|
|
|
|
|
|
|
219
|
|
|
|
|
|
|
#lifted from Module::Build::Base, added package and version resolution and |
220
|
|
|
|
|
|
|
# addition to configure requires |
221
|
|
|
|
|
|
|
sub prepare_metadata { |
222
|
0
|
|
|
0
|
1
|
|
my ($self, $node, $keys) = @_; |
223
|
0
|
|
|
|
|
|
my $p = $self->{properties}; |
224
|
|
|
|
|
|
|
|
225
|
|
|
|
|
|
|
#JONASBN: Added package resolution |
226
|
0
|
|
|
|
|
|
my $package = ref $self; |
227
|
0
|
|
|
|
|
|
my $version = $package::VERSION; |
228
|
|
|
|
|
|
|
|
229
|
|
|
|
|
|
|
# A little helper sub |
230
|
|
|
|
|
|
|
my $add_node = sub { |
231
|
0
|
|
|
0
|
|
|
my ($name, $val) = @_; |
232
|
0
|
|
|
|
|
|
$node->{$name} = $val; |
233
|
0
|
0
|
|
|
|
|
push @$keys, $name if $keys; |
234
|
0
|
|
|
|
|
|
}; |
235
|
|
|
|
|
|
|
|
236
|
0
|
|
|
|
|
|
foreach (qw(dist_name dist_version dist_author dist_abstract license)) { |
237
|
0
|
|
|
|
|
|
(my $name = $_) =~ s/^dist_//; |
238
|
0
|
|
|
|
|
|
$add_node->($name, $self->$_()); |
239
|
|
|
|
|
|
|
die "ERROR: Missing required field '$_' for META.yml\n" |
240
|
0
|
0
|
0
|
|
|
|
unless defined($node->{$name}) && length($node->{$name}); |
241
|
|
|
|
|
|
|
} |
242
|
0
|
|
|
|
|
|
$node->{version} = $self->normalize_version($node->{version}); |
243
|
|
|
|
|
|
|
|
244
|
0
|
0
|
|
|
|
|
if (defined( my $l = $self->license )) { |
245
|
|
|
|
|
|
|
die "Unknown license string '$l'" |
246
|
0
|
0
|
|
|
|
|
unless exists $self->valid_licenses->{ $l }; |
247
|
|
|
|
|
|
|
|
248
|
0
|
0
|
|
|
|
|
if (my $key = $self->valid_licenses->{ $l }) { |
249
|
0
|
|
|
|
|
|
my $class = "Software::License::$key"; |
250
|
0
|
0
|
|
|
|
|
if (eval "use $class; 1") { |
251
|
|
|
|
|
|
|
# S::L requires a 'holder' key |
252
|
0
|
|
|
|
|
|
$node->{resources}{license} = $class->new({holder=>"nobody"})->url; |
253
|
|
|
|
|
|
|
} |
254
|
|
|
|
|
|
|
else { |
255
|
0
|
|
|
|
|
|
$node->{resources}{license} = $self->_license_url($l); |
256
|
|
|
|
|
|
|
} |
257
|
|
|
|
|
|
|
} |
258
|
|
|
|
|
|
|
# XXX we are silently omitting the url for any unknown license |
259
|
|
|
|
|
|
|
} |
260
|
|
|
|
|
|
|
|
261
|
|
|
|
|
|
|
# copy prereq data structures so we can modify them before writing to META |
262
|
0
|
|
|
|
|
|
my %prereq_types; |
263
|
0
|
|
|
|
|
|
for my $type ( 'configure_requires', @{$self->prereq_action_types} ) { |
|
0
|
|
|
|
|
|
|
264
|
0
|
0
|
|
|
|
|
if (exists $p->{$type}) { |
265
|
0
|
|
|
|
|
|
for my $mod ( keys %{ $p->{$type} } ) { |
|
0
|
|
|
|
|
|
|
266
|
|
|
|
|
|
|
$prereq_types{$type}{$mod} = |
267
|
0
|
|
|
|
|
|
$self->normalize_version($p->{$type}{$mod}); |
268
|
|
|
|
|
|
|
} |
269
|
|
|
|
|
|
|
} |
270
|
|
|
|
|
|
|
} |
271
|
|
|
|
|
|
|
|
272
|
|
|
|
|
|
|
# add current Module::Build to configure_requires if there |
273
|
|
|
|
|
|
|
# isn't one already specified (but not ourself, so we're not circular) |
274
|
0
|
0
|
0
|
|
|
|
if ( $self->dist_name ne 'Module-Build' |
|
|
|
0
|
|
|
|
|
275
|
|
|
|
|
|
|
&& $self->auto_configure_requires |
276
|
|
|
|
|
|
|
&& ! exists $prereq_types{'configure_requires'}{'Module::Build'} |
277
|
|
|
|
|
|
|
) { |
278
|
0
|
|
|
|
|
|
$prereq_types{configure_requires}{'Module::Build'} = $VERSION; |
279
|
|
|
|
|
|
|
#JONASBN added configure requires |
280
|
0
|
|
|
|
|
|
$prereq_types{configure_requires}{$package} = $version; |
281
|
|
|
|
|
|
|
} |
282
|
|
|
|
|
|
|
|
283
|
0
|
|
|
|
|
|
for my $t ( keys %prereq_types ) { |
284
|
0
|
|
|
|
|
|
$add_node->($t, $prereq_types{$t}); |
285
|
|
|
|
|
|
|
} |
286
|
|
|
|
|
|
|
|
287
|
0
|
0
|
|
|
|
|
if (exists $p->{dynamic_config}) { |
288
|
0
|
|
|
|
|
|
$add_node->('dynamic_config', $p->{dynamic_config}); |
289
|
|
|
|
|
|
|
} |
290
|
0
|
|
|
|
|
|
my $pkgs = eval { $self->find_dist_packages }; |
|
0
|
|
|
|
|
|
|
291
|
0
|
0
|
|
|
|
|
if ($@) { |
292
|
0
|
|
|
|
|
|
$self->log_warn("$@\nWARNING: Possible missing or corrupt 'MANIFEST' file.\n" . |
293
|
|
|
|
|
|
|
"Nothing to enter for 'provides' field in META.yml\n"); |
294
|
|
|
|
|
|
|
} else { |
295
|
0
|
0
|
|
|
|
|
$node->{provides} = $pkgs if %$pkgs; |
296
|
|
|
|
|
|
|
} |
297
|
|
|
|
|
|
|
; |
298
|
0
|
0
|
|
|
|
|
if (exists $p->{no_index}) { |
299
|
0
|
|
|
|
|
|
$add_node->('no_index', $p->{no_index}); |
300
|
|
|
|
|
|
|
} |
301
|
|
|
|
|
|
|
|
302
|
0
|
|
|
|
|
|
$add_node->('generated_by', "$package version $version"); |
303
|
|
|
|
|
|
|
|
304
|
0
|
|
|
|
|
|
$add_node->('meta-spec', |
305
|
|
|
|
|
|
|
{version => '1.4', |
306
|
|
|
|
|
|
|
url => 'http://module-build.sourceforge.net/META-spec-v1.4.html', |
307
|
|
|
|
|
|
|
}); |
308
|
|
|
|
|
|
|
|
309
|
0
|
|
|
|
|
|
while (my($k, $v) = each %{$self->meta_add}) { |
|
0
|
|
|
|
|
|
|
310
|
0
|
|
|
|
|
|
$add_node->($k, $v); |
311
|
|
|
|
|
|
|
} |
312
|
|
|
|
|
|
|
|
313
|
0
|
|
|
|
|
|
while (my($k, $v) = each %{$self->meta_merge}) { |
|
0
|
|
|
|
|
|
|
314
|
0
|
|
|
|
|
|
$self->_hash_merge($node, $k, $v); |
315
|
|
|
|
|
|
|
} |
316
|
|
|
|
|
|
|
|
317
|
0
|
|
|
|
|
|
return $node; |
318
|
|
|
|
|
|
|
} |
319
|
|
|
|
|
|
|
|
320
|
|
|
|
|
|
|
sub is_windowsish { |
321
|
0
|
|
|
0
|
1
|
|
return 0; |
322
|
|
|
|
|
|
|
} |
323
|
|
|
|
|
|
|
|
324
|
|
|
|
|
|
|
1; |
325
|
|
|
|
|
|
|
|
326
|
|
|
|
|
|
|
__END__ |