AnyEvent-Plurk

 view release on metacpan or  search on metacpan

inc/Module/AutoInstall.pm  view on Meta::CPAN

173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
    unshift @$modules, $arg;
    $arg = 0;
}
 
# XXX: check for conflicts and uninstalls(!) them.
my $cur = _load($mod);
if (_version_cmp ($cur, $arg) >= 0)
{
    print "loaded. ($cur" . ( $arg ? " >= $arg" : '' ) . ")\n";
    push @Existing, $mod => $arg;
    $DisabledTests{$_} = 1 for map { glob($_) } @skiptests;
}
else {
    if (not defined $cur)   # indeed missing
    {
        print "missing." . ( $arg ? " (would need $arg)" : '' ) . "\n";
    }
    else
    {
        # no need to check $arg as _version_cmp ($cur, undef) would satisfy >= above
        print "too old. ($cur < $arg)\n";

inc/Module/AutoInstall.pm  view on Meta::CPAN

211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
                    qq{==> Auto-install the }
                      . ( @required / 2 )
                      . ( $mandatory ? ' mandatory' : ' optional' )
                      . qq{ module(s) from CPAN?},
                    $default ? 'y' : 'n',
                ) =~ /^[Yy]/
            )
          )
        {
            push( @Missing, @required );
            $DisabledTests{$_} = 1 for map { glob($_) } @skiptests;
        }
 
        elsif ( !$SkipInstall
            and $default
            and $mandatory
            and
            _prompt( qq{==> The module(s) are mandatory! Really skip?}, 'n', )
            =~ /^[Nn]/ )
        {
            push( @Missing, @required );
            $DisabledTests{$_} = 1 for map { glob($_) } @skiptests;
        }
 
        else {
            $DisabledTests{$_} = 1 for map { glob($_) } @tests;
        }
    }
 
    if ( @Missing and not( $CheckOnly or $UnderCPAN ) ) {
        require Config;
        print
"*** Dependencies will be installed the next time you type '$Config::Config{make}'.\n";
 
        # make an educated guess of whether we'll need root permission.
        print "    (You may need to do that as the 'root' user.)\n"

inc/Module/AutoInstall.pm  view on Meta::CPAN

728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
    require ExtUtils::Manifest;
    my $manifest = ExtUtils::Manifest::maniread('MANIFEST');
 
    $args{EXE_FILES} =
      [ grep { exists $manifest->{$_} } @{ $args{EXE_FILES} } ];
}
 
$args{test}{TESTS} ||= 't/*.t';
$args{test}{TESTS} = join( ' ',
    grep { !exists( $DisabledTests{$_} ) }
      map { glob($_) } split( /\s+/, $args{test}{TESTS} ) );
 
my $missing = join( ',', @Missing );
my $config =
  join( ',', UNIVERSAL::isa( $Config, 'HASH' ) ? %{$Config} : @{$Config} )
  if $Config;
 
$PostambleActions = (
    ($missing and not $UnderCPAN)
    ? "\$(PERL) $0 --config=$config --installdeps=$missing"
    : "\$(NOECHO) \$(NOOP)"

inc/Module/Install.pm  view on Meta::CPAN

187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
        );
}
 
my @exts = @{$self->{extensions}};
unless ( @exts ) {
        @exts = $self->{admin}->load_all_extensions;
}
 
my %seen;
foreach my $obj ( @exts ) {
        while (my ($method, $glob) = each %{ref($obj) . '::'}) {
                next unless $obj->can($method);
                next if $method =~ /^_/;
                next if $method eq uc($method);
                $seen{$method}++;
        }
}
 
my $who = $self->_caller;
foreach my $name ( sort keys %seen ) {
        *{"${who}::$name"} = sub {



( run in 0.383 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )