| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package CPANPLUS::Dist; |
|
2
|
|
|
|
|
|
|
|
|
3
|
15
|
|
|
15
|
|
222
|
use strict; |
|
|
15
|
|
|
|
|
212
|
|
|
|
15
|
|
|
|
|
241
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
15
|
|
|
15
|
|
238
|
use CPANPLUS::Error; |
|
|
15
|
|
|
|
|
136
|
|
|
|
15
|
|
|
|
|
262
|
|
|
7
|
15
|
|
|
15
|
|
338
|
use CPANPLUS::Internals::Constants; |
|
|
15
|
|
|
|
|
143
|
|
|
|
15
|
|
|
|
|
533
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
15
|
|
|
15
|
|
403
|
use Params::Check qw[check]; |
|
|
15
|
|
|
|
|
146
|
|
|
|
15
|
|
|
|
|
281
|
|
|
10
|
15
|
|
|
15
|
|
1139
|
use Module::Load::Conditional qw[can_load check_install]; |
|
|
15
|
|
|
|
|
1373
|
|
|
|
15
|
|
|
|
|
396
|
|
|
11
|
15
|
|
|
15
|
|
278
|
use Locale::Maketext::Simple Class => 'CPANPLUS', Style => 'gettext'; |
|
|
15
|
|
|
|
|
178
|
|
|
|
15
|
|
|
|
|
367
|
|
|
12
|
15
|
|
|
15
|
|
310
|
use Object::Accessor; |
|
|
15
|
|
|
|
|
143
|
|
|
|
15
|
|
|
|
|
294
|
|
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
local $Params::Check::VERBOSE = 1; |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
my @methods = qw[status parent]; |
|
17
|
|
|
|
|
|
|
for my $key ( @methods ) { |
|
18
|
15
|
|
|
15
|
|
269
|
no strict 'refs'; |
|
|
15
|
|
|
|
|
136
|
|
|
|
15
|
|
|
|
|
1398
|
|
|
19
|
|
|
|
|
|
|
*{__PACKAGE__."::$key"} = sub { |
|
20
|
294
|
|
|
294
|
|
16924
|
my $self = shift; |
|
21
|
294
|
100
|
|
|
|
4120
|
$self->{$key} = $_[0] if @_; |
|
22
|
294
|
|
|
|
|
8426
|
return $self->{$key}; |
|
23
|
|
|
|
|
|
|
} |
|
24
|
|
|
|
|
|
|
} |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=pod |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 NAME |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
CPANPLUS::Dist |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
my $dist = CPANPLUS::Dist->new( |
|
35
|
|
|
|
|
|
|
format => 'build', |
|
36
|
|
|
|
|
|
|
module => $modobj, |
|
37
|
|
|
|
|
|
|
); |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
C<CPANPLUS::Dist> is a base class for any type of C<CPANPLUS::Dist::> |
|
42
|
|
|
|
|
|
|
modules. |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 ACCESSORS |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=over 4 |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item parent() |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Returns the C<CPANPLUS::Module> object that parented this object. |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=item status() |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Returns the C<Object::Accessor> object that keeps the status for |
|
55
|
|
|
|
|
|
|
this module. |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=back |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 STATUS ACCESSORS |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
All accessors can be accessed as follows: |
|
62
|
|
|
|
|
|
|
$deb->status->ACCESSOR |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=over 4 |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=item created() |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Boolean indicating whether the dist was created successfully. |
|
69
|
|
|
|
|
|
|
Explicitly set to C<0> when failed, so a value of C<undef> may be |
|
70
|
|
|
|
|
|
|
interpreted as C<not yet attempted>. |
|
71
|
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=item installed() |
|
73
|
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
Boolean indicating whether the dist was installed successfully. |
|
75
|
|
|
|
|
|
|
Explicitly set to C<0> when failed, so a value of C<undef> may be |
|
76
|
|
|
|
|
|
|
interpreted as C<not yet attempted>. |
|
77
|
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=item uninstalled() |
|
79
|
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
Boolean indicating whether the dist was uninstalled successfully. |
|
81
|
|
|
|
|
|
|
Explicitly set to C<0> when failed, so a value of C<undef> may be |
|
82
|
|
|
|
|
|
|
interpreted as C<not yet attempted>. |
|
83
|
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=item dist() |
|
85
|
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
The location of the final distribution. This may be a file or |
|
87
|
|
|
|
|
|
|
directory, depending on how your distribution plug in of choice |
|
88
|
|
|
|
|
|
|
works. This will be set upon a successful create. |
|
89
|
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=cut |
|
91
|
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=head2 $dist = CPANPLUS::Dist->new( module => MODOBJ, [format => DIST_TYPE] ); |
|
93
|
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
Create a new C<CPANPLUS::Dist> object based on the provided C<MODOBJ>. |
|
95
|
|
|
|
|
|
|
The optional argument C<format> is used to indicate what type of dist |
|
96
|
|
|
|
|
|
|
you would like to create (like C<makemaker> for a C<CPANPLUS::Dist::MM> |
|
97
|
|
|
|
|
|
|
object, C<build> for a C<CPANPLUS::Dist::Build> object, and so on ). |
|
98
|
|
|
|
|
|
|
If not provided, will default to the setting as specified by your |
|
99
|
|
|
|
|
|
|
config C<dist_type>. |
|
100
|
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
Returns a C<CPANPLUS::Dist> object on success and false on failure. |
|
102
|
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=cut |
|
104
|
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
sub new { |
|
106
|
42
|
|
|
42
|
1
|
5887
|
my $self = shift; |
|
107
|
42
|
|
|
|
|
1185
|
my %hash = @_; |
|
108
|
|
|
|
|
|
|
|
|
109
|
42
|
|
|
|
|
469
|
local $Params::Check::ALLOW_UNKNOWN = 1; |
|
110
|
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
|
|
112
|
42
|
|
|
|
|
360
|
my $mod; |
|
113
|
42
|
|
|
|
|
1090
|
my $tmpl = { |
|
114
|
|
|
|
|
|
|
module => { required => 1, allow => IS_MODOBJ, store => \$mod }, |
|
115
|
|
|
|
|
|
|
}; |
|
116
|
42
|
50
|
|
|
|
669
|
check( $tmpl, \%hash ) or return; |
|
117
|
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
|
|
119
|
42
|
|
|
|
|
1718
|
my $conf = $mod->parent->configure_object(); |
|
120
|
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
|
|
122
|
42
|
|
|
|
|
366
|
my $format; |
|
123
|
42
|
|
|
|
|
6054
|
my $tmpl2 = { |
|
124
|
|
|
|
|
|
|
format => { default => $conf->get_conf('dist_type'), |
|
125
|
|
|
|
|
|
|
allow => [ __PACKAGE__->dist_types ], |
|
126
|
|
|
|
|
|
|
store => \$format }, |
|
127
|
|
|
|
|
|
|
}; |
|
128
|
42
|
50
|
|
|
|
3705
|
check( $tmpl2, \%hash ) or return; |
|
129
|
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
|
|
131
|
42
|
50
|
|
|
|
2999
|
unless( can_load( modules => { $format => '0.0' }, verbose => 1 ) ) { |
|
132
|
0
|
|
|
|
|
0
|
error(loc("'%1' not found -- you need '%2' version '%3' or higher ". |
|
133
|
|
|
|
|
|
|
"to detect plugins", $format, 'Module::Pluggable','2.4')); |
|
134
|
0
|
|
|
|
|
0
|
return; |
|
135
|
|
|
|
|
|
|
} |
|
136
|
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
|
|
138
|
42
|
|
|
|
|
5426
|
my $obj = bless { parent => $mod }, $format; |
|
139
|
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
|
|
141
|
42
|
100
|
100
|
|
|
1165
|
if( $conf->_get_build('sanity_check') and not $obj->format_available ) { |
|
142
|
1
|
|
|
|
|
211
|
error( loc( "Format '%1' is not available",$format) ); |
|
143
|
1
|
|
|
|
|
41
|
return; |
|
144
|
|
|
|
|
|
|
} |
|
145
|
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
|
|
147
|
41
|
|
|
|
|
623
|
{ my $acc = Object::Accessor->new; |
|
|
41
|
|
|
|
|
1163
|
|
|
148
|
41
|
|
|
|
|
3646
|
$obj->status($acc); |
|
149
|
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
|
|
151
|
41
|
|
|
|
|
678
|
$acc->mk_accessors( qw[prepared created installed uninstalled |
|
152
|
|
|
|
|
|
|
distdir dist] ); |
|
153
|
|
|
|
|
|
|
} |
|
154
|
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
|
|
156
|
41
|
100
|
|
|
|
773
|
unless( $obj->init ) { |
|
157
|
1
|
|
|
|
|
51
|
error(loc("Dist initialization of '%1' failed for '%2'", |
|
158
|
|
|
|
|
|
|
$format, $mod->module)); |
|
159
|
1
|
|
|
|
|
13
|
return; |
|
160
|
|
|
|
|
|
|
} |
|
161
|
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
|
|
163
|
40
|
|
|
|
|
1149
|
return $obj; |
|
164
|
|
|
|
|
|
|
} |
|
165
|
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
=head2 @dists = CPANPLUS::Dist->dist_types; |
|
167
|
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
Returns a list of the CPANPLUS::Dist::* classes available |
|
169
|
|
|
|
|
|
|
|
|
170
|
|
|
|
|
|
|
=cut |
|
171
|
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
|
|
173
|
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
{ my $Loaded; |
|
176
|
|
|
|
|
|
|
my @Dists = (INSTALLER_MM); |
|
177
|
|
|
|
|
|
|
my @Ignore = (); |
|
178
|
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
|
|
180
|
1
|
|
|
1
|
|
11
|
sub _add_dist_types { my $self = shift; push @Dists, @_ }; |
|
|
1
|
|
|
|
|
12
|
|
|
181
|
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
|
|
183
|
1
|
|
|
1
|
|
47
|
sub _ignore_dist_types { my $self = shift; push @Ignore, @_ }; |
|
|
1
|
|
|
|
|
13
|
|
|
184
|
|
|
|
|
|
|
|
|
185
|
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
|
|
188
|
|
|
|
|
|
|
|
|
189
|
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
|
|
191
|
|
|
|
|
|
|
sub dist_types { |
|
192
|
|
|
|
|
|
|
|
|
193
|
65
|
100
|
66
|
65
|
1
|
2471
|
if ( !$Loaded++ and check_install( module => 'Module::Pluggable', |
|
194
|
|
|
|
|
|
|
version => '2.4') |
|
195
|
|
|
|
|
|
|
) { |
|
196
|
3
|
|
|
|
|
92
|
require Module::Pluggable; |
|
197
|
|
|
|
|
|
|
|
|
198
|
3
|
|
|
|
|
35
|
my $only_re = __PACKAGE__ . '::\w+$'; |
|
199
|
|
|
|
|
|
|
|
|
200
|
3
|
|
|
|
|
480
|
Module::Pluggable->import( |
|
201
|
|
|
|
|
|
|
sub_name => '_dist_types', |
|
202
|
|
|
|
|
|
|
search_path => __PACKAGE__, |
|
203
|
|
|
|
|
|
|
only => qr/$only_re/, |
|
204
|
|
|
|
|
|
|
except => [ INSTALLER_MM, |
|
205
|
|
|
|
|
|
|
INSTALLER_SAMPLE, |
|
206
|
|
|
|
|
|
|
INSTALLER_BASE, |
|
207
|
|
|
|
|
|
|
] |
|
208
|
|
|
|
|
|
|
); |
|
209
|
3
|
|
|
|
|
32
|
my %ignore = map { $_ => $_ } @Ignore; |
|
|
1
|
|
|
|
|
14
|
|
|
210
|
|
|
|
|
|
|
|
|
211
|
3
|
|
|
|
|
48
|
push @Dists, grep { not $ignore{$_} } __PACKAGE__->_dist_types; |
|
|
4
|
|
|
|
|
115
|
|
|
212
|
|
|
|
|
|
|
} |
|
213
|
|
|
|
|
|
|
|
|
214
|
65
|
|
|
|
|
3877
|
return @Dists; |
|
215
|
|
|
|
|
|
|
} |
|
216
|
|
|
|
|
|
|
} |
|
217
|
|
|
|
|
|
|
|
|
218
|
|
|
|
|
|
|
=head2 prereq_satisfied( modobj => $modobj, version => $version_spec ) |
|
219
|
|
|
|
|
|
|
|
|
220
|
|
|
|
|
|
|
Returns true if this prereq is satisfied. Returns false if it's not. |
|
221
|
|
|
|
|
|
|
Also issues an error if it seems "unsatisfiable," i.e. if it can't be |
|
222
|
|
|
|
|
|
|
found on CPAN or the latest CPAN version doesn't satisfy it. |
|
223
|
|
|
|
|
|
|
|
|
224
|
|
|
|
|
|
|
=cut |
|
225
|
|
|
|
|
|
|
|
|
226
|
|
|
|
|
|
|
sub prereq_satisfied { |
|
227
|
17
|
|
|
17
|
1
|
271
|
my $dist = shift; |
|
228
|
17
|
|
|
|
|
226
|
my $cb = $dist->parent->parent; |
|
229
|
17
|
|
|
|
|
257
|
my %hash = @_; |
|
230
|
|
|
|
|
|
|
|
|
231
|
17
|
|
|
|
|
147
|
my($mod,$ver); |
|
232
|
17
|
|
|
|
|
356
|
my $tmpl = { |
|
233
|
|
|
|
|
|
|
version => { required => 1, store => \$ver }, |
|
234
|
|
|
|
|
|
|
modobj => { required => 1, store => \$mod, allow => IS_MODOBJ }, |
|
235
|
|
|
|
|
|
|
}; |
|
236
|
|
|
|
|
|
|
|
|
237
|
17
|
50
|
|
|
|
280
|
check( $tmpl, \%hash ) or return; |
|
238
|
|
|
|
|
|
|
|
|
239
|
17
|
50
|
|
|
|
673
|
return 1 if $mod->is_uptodate( version => $ver ); |
|
240
|
|
|
|
|
|
|
|
|
241
|
17
|
100
|
|
|
|
260
|
if ( $cb->_vcmp( $ver, $mod->version ) > 0 ) { |
|
242
|
|
|
|
|
|
|
|
|
243
|
15
|
|
|
|
|
212
|
error(loc( |
|
244
|
|
|
|
|
|
|
"This distribution depends on %1, but the latest version". |
|
245
|
|
|
|
|
|
|
" of %2 on CPAN (%3) doesn't satisfy the specific version". |
|
246
|
|
|
|
|
|
|
" dependency (%4). You may have to resolve this dependency ". |
|
247
|
|
|
|
|
|
|
"manually.", |
|
248
|
|
|
|
|
|
|
$mod->module, $mod->module, $mod->version, $ver )); |
|
249
|
|
|
|
|
|
|
|
|
250
|
|
|
|
|
|
|
} |
|
251
|
|
|
|
|
|
|
|
|
252
|
17
|
|
|
|
|
794
|
return; |
|
253
|
|
|
|
|
|
|
} |
|
254
|
|
|
|
|
|
|
|
|
255
|
|
|
|
|
|
|
=head2 _resolve_prereqs |
|
256
|
|
|
|
|
|
|
|
|
257
|
|
|
|
|
|
|
Makes sure prerequisites are resolved |
|
258
|
|
|
|
|
|
|
|
|
259
|
|
|
|
|
|
|
XXX Need docs, internal use only |
|
260
|
|
|
|
|
|
|
|
|
261
|
|
|
|
|
|
|
=cut |
|
262
|
|
|
|
|
|
|
|
|
263
|
|
|
|
|
|
|
sub _resolve_prereqs { |
|
264
|
20
|
|
|
20
|
|
2042
|
my $dist = shift; |
|
265
|
20
|
|
|
|
|
438
|
my $self = $dist->parent; |
|
266
|
20
|
|
|
|
|
486
|
my $cb = $self->parent; |
|
267
|
20
|
|
|
|
|
788
|
my $conf = $cb->configure_object; |
|
268
|
20
|
|
|
|
|
2024
|
my %hash = @_; |
|
269
|
|
|
|
|
|
|
|
|
270
|
20
|
|
|
|
|
296
|
my ($prereqs, $format, $verbose, $target, $force, $prereq_build); |
|
271
|
20
|
|
|
|
|
772
|
my $tmpl = { |
|
272
|
|
|
|
|
|
|
|
|
273
|
|
|
|
|
|
|
|
|
274
|
|
|
|
|
|
|
|
|
275
|
|
|
|
|
|
|
|
|
276
|
|
|
|
|
|
|
|
|
277
|
|
|
|
|
|
|
|
|
278
|
|
|
|
|
|
|
format => { required => 1, store => \$format, |
|
279
|
|
|
|
|
|
|
allow => ['',__PACKAGE__->dist_types], }, |
|
280
|
|
|
|
|
|
|
prereqs => { required => 1, default => { }, |
|
281
|
|
|
|
|
|
|
strict_type => 1, store => \$prereqs }, |
|
282
|
|
|
|
|
|
|
verbose => { default => $conf->get_conf('verbose'), |
|
283
|
|
|
|
|
|
|
store => \$verbose }, |
|
284
|
|
|
|
|
|
|
force => { default => $conf->get_conf('force'), |
|
285
|
|
|
|
|
|
|
store => \$force }, |
|
286
|
|
|
|
|
|
|
|
|
287
|
|
|
|
|
|
|
target => { default => '', store => \$target, |
|
288
|
|
|
|
|
|
|
allow => ['',qw[create ignore install]] }, |
|
289
|
|
|
|
|
|
|
prereq_build => { default => 0, store => \$prereq_build }, |
|
290
|
|
|
|
|
|
|
}; |
|
291
|
|
|
|
|
|
|
|
|
292
|
20
|
50
|
|
|
|
413
|
check( $tmpl, \%hash ) or return; |
|
293
|
|
|
|
|
|
|
|
|
294
|
|
|
|
|
|
|
|
|
295
|
20
|
100
|
|
|
|
1003
|
return 1 unless keys %$prereqs; |
|
296
|
|
|
|
|
|
|
|
|
297
|
|
|
|
|
|
|
|
|
298
|
|
|
|
|
|
|
|
|
299
|
16
|
|
50
|
|
|
1290
|
$target ||= { |
|
|
|
|
66
|
|
|
|
|
|
300
|
|
|
|
|
|
|
PREREQ_ASK, TARGET_INSTALL, |
|
301
|
|
|
|
|
|
|
PREREQ_BUILD, TARGET_CREATE, |
|
302
|
|
|
|
|
|
|
PREREQ_IGNORE, TARGET_IGNORE, |
|
303
|
|
|
|
|
|
|
PREREQ_INSTALL, TARGET_INSTALL, |
|
304
|
|
|
|
|
|
|
}->{ $conf->get_conf('prereqs') } || ''; |
|
305
|
|
|
|
|
|
|
|
|
306
|
|
|
|
|
|
|
|
|
307
|
|
|
|
|
|
|
|
|
308
|
|
|
|
|
|
|
|
|
309
|
|
|
|
|
|
|
|
|
310
|
|
|
|
|
|
|
|
|
311
|
|
|
|
|
|
|
|
|
312
|
|
|
|
|
|
|
|
|
313
|
|
|
|
|
|
|
|
|
314
|
|
|
|
|
|
|
|
|
315
|
|
|
|
|
|
|
|
|
316
|
|
|
|
|
|
|
|
|
317
|
|
|
|
|
|
|
|
|
318
|
|
|
|
|
|
|
|
|
319
|
16
|
|
|
|
|
292
|
my @sorted_prereqs; |
|
320
|
|
|
|
|
|
|
|
|
321
|
|
|
|
|
|
|
|
|
322
|
16
|
50
|
|
|
|
1343
|
if( $self->module =~ /^Bundle(::|-)CPANPLUS(::|-)Dependencies/ ) { |
|
323
|
0
|
|
|
|
|
0
|
my (@first, @last); |
|
324
|
0
|
|
|
|
|
0
|
for my $mod ( sort keys %$prereqs ) { |
|
325
|
0
|
0
|
|
|
|
0
|
$mod =~ /CPANPLUS/ |
|
326
|
|
|
|
|
|
|
? push @last, $mod |
|
327
|
|
|
|
|
|
|
: push @first, $mod; |
|
328
|
|
|
|
|
|
|
} |
|
329
|
0
|
|
|
|
|
0
|
@sorted_prereqs = (@first, @last); |
|
330
|
|
|
|
|
|
|
} else { |
|
331
|
16
|
|
|
|
|
416
|
@sorted_prereqs = sort keys %$prereqs; |
|
332
|
|
|
|
|
|
|
} |
|
333
|
|
|
|
|
|
|
|
|
334
|
|
|
|
|
|
|
|
|
335
|
|
|
|
|
|
|
|
|
336
|
16
|
|
|
|
|
479
|
my @install_me; |
|
337
|
|
|
|
|
|
|
|
|
338
|
16
|
|
|
|
|
620
|
for my $mod ( @sorted_prereqs ) { |
|
339
|
18
|
|
|
|
|
486
|
my $version = $prereqs->{$mod}; |
|
340
|
18
|
|
|
|
|
595
|
my $modobj = $cb->module_tree($mod); |
|
341
|
|
|
|
|
|
|
|
|
342
|
|
|
|
|
|
|
|
|
343
|
|
|
|
|
|
|
|
|
344
|
18
|
100
|
|
|
|
668
|
unless( $modobj ) { |
|
345
|
4
|
|
|
|
|
245
|
error( loc( "No such module '%1' found on CPAN", $mod ) ); |
|