Alien-ROOT

 view release on metacpan or  search on metacpan

inc/inc_Archive-Extract/Archive/Extract.pm  view on Meta::CPAN

1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
=item Mime magic support
 
Maybe this module should use something like C<File::Type> to determine
the type, rather than blindly trust the suffix.
 
=item Thread safety
 
Currently, C<Archive::Extract> does a C<chdir> to the extraction dir before
extraction, and a C<chdir> back again after. This is not necessarily
thread safe. See C<rt.cpan.org> bug C<#45671> for details.
 
=back
 
=head1 BUG REPORTS
 
Please report bugs or other issues to E<lt>bug-archive-extract@rt.cpan.org<gt>.
 
=head1 AUTHOR
 
This module by Jos Boumans E<lt>kane@cpan.orgE<gt>.

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN

478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
Build a PPD file for your distribution.
 
This action takes an optional argument C<codebase> which is used in
the generated PPD file to specify the (usually relative) URL of the
distribution.  By default, this value is the distribution name without
any path information.
 
Example:
 
  ./Build ppd --codebase "MSWin32-x86-multi-thread/Module-Build-0.21.tar.gz"
 
=item ppmdist
 
[version 0.23]
 
Generates a PPM binary distribution and a PPD description file.  This
action also invokes the C<ppd> action, so it can accept the same
C<codebase> argument described under that action.
 
This uses the same mechanism as the C<dist> action to tar & zip its

inc/inc_Module-Build/Module/Build/Dumper.pm  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use vars qw($VERSION);
$VERSION = '0.4003';
 
# This is just a split-out of a wrapper function to do Data::Dumper
# stuff "the right way".  See:
 
 
sub _data_dump {
  my ($self, $data) = @_;
  return ("do{ my "
          . Data::Dumper->new([$data],['x'])->Purity(1)->Terse(0)->Dump()
          . '$x; }')
}



( run in 0.270 second using v1.01-cache-2.11-cpan-ec4f86ec37b )