Changeset 16491

Show
Ignore:
Timestamp:
07/25/08 23:10:08 (5 years ago)
Author:
hanekomu
Message:

continued to update distribution to standard style

Location:
lang/perl/Module-Install-StandardTests/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Module-Install-StandardTests/trunk/Changes

    r16356 r16491  
    11Revision history for Perl extension Module-Install-StandardTests 
     2 
     30.07  Thu Jul 25 15:27:43 CEST 2008 (Marcel Gruenauer <marcel@cpan.org>) 
     4     - Changed dist style and Changes back to standard. People didn't like it - 
     5       the nail that sticks out gets hammered down. 
     6     - Added standard test files; this will also help with CPANTS. 
    27 
    380.06  Thu, 29 May 2008 12:06:06 -0000 (Marcel Gruenauer <marcel@cpan.org>) 
  • lang/perl/Module-Install-StandardTests/trunk/MANIFEST

    r16356 r16491  
    22inc/Module/AutoInstall.pm 
    33inc/Module/Install.pm 
    4 inc/Module/Install/AutoInstall.pm 
    54inc/Module/Install/Base.pm 
    65inc/Module/Install/Can.pm 
     
    98inc/Module/Install/Makefile.pm 
    109inc/Module/Install/Metadata.pm 
    11 inc/Module/Install/Template.pm 
    1210inc/Module/Install/Win32.pm 
    1311inc/Module/Install/WriteAll.pm 
    14 inc/Test/Compile.pm 
    1512inc/Test/More.pm 
    16 inc/Test/Pod.pm 
    17 inc/Test/Pod/Coverage.pm 
    1813lib/Module/Install/StandardTests.pm 
    1914LICENSE 
  • lang/perl/Module-Install-StandardTests/trunk/MANIFEST.SKIP

    r9786 r16491  
    1010^Build$ 
    1111^blib/ 
     12^pm_to_blib/ 
    1213^_build/ 
    1314^MakeMaker-\d 
     
    2728\.old$ 
    2829\.swp$ 
     30\.tar$ 
     31\.tar\.gz$ 
    2932^#.*#$ 
    3033^\.# 
  • lang/perl/Module-Install-StandardTests/trunk/Makefile.PL

    r9786 r16491  
    88requires 'Module::Install'; 
    99 
    10 build_requires 'Test::More' => '0.70'; 
    11  
    12 # The build doesn't really require the following, but by using this 
     10# The dist doesn't really require the following, but by using this 
    1311# distribution, one might say that you're interested in those distributions as 
    1412# well, so: 
    1513 
    16 build_requires 'Test::Compile'; 
    17 build_requires 'Test::Pod'; 
    18 build_requires 'Test::Pod::Coverage'; 
     14requires 'Test::Compile'; 
     15requires 'Test::Pod'; 
     16requires 'Test::Pod::Coverage'; 
    1917 
    20 process_templates( 
    21     first_year => 2007, 
    22     rest_from  => "$ENV{HOME}/.mitlib/standard_pod", 
    23     start_tag  => '{%', 
    24     end_tag    => '%}', 
    25 ); 
     18test_requires 'Test::More' => '0.70'; 
    2619 
    27 auto_install; 
    2820auto_include; 
    2921WriteAll; 
  • lang/perl/Module-Install-StandardTests/trunk/lib/Module/Install/StandardTests.pm

    r9786 r16491  
    2121    } 
    2222 
    23     $self->build_requires('Test::More'); 
    24     $self->build_requires('UNIVERSAL::require'); 
     23    $self->test_requires('Test::More'); 
     24    $self->test_requires('UNIVERSAL::require'); 
    2525 
    2626    # Unlike other tests, this is mandatory. 
    27     $self->build_requires('Test::Compile'); 
     27    $self->test_requires('Test::Compile'); 
    2828 
    2929    $self->write_standard_test_compile;    # no if; this is mandatory 
     
    136136__END__ 
    137137 
    138 {% USE p = PodGenerated %} 
     138 
    139139 
    140140=head1 NAME 
     
    235235=back 
    236236 
    237 {% PROCESS standard_pod %} 
     237=head1 BUGS AND LIMITATIONS 
     238 
     239No bugs have been reported. 
     240 
     241Please report any bugs or feature requests through the web interface at 
     242L<http://rt.cpan.org>. 
     243 
     244=head1 INSTALLATION 
     245 
     246See perlmodinstall for information and options on installing Perl modules. 
     247 
     248=head1 AVAILABILITY 
     249 
     250The latest version of this module is available from the Comprehensive Perl 
     251Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 
     252site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 
     253 
     254=head1 AUTHORS 
     255 
     256Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 
     257 
     258=head1 COPYRIGHT AND LICENSE 
     259 
     260Copyright 2007-2008 by the authors. 
     261 
     262This library is free software; you can redistribute it and/or modify 
     263it under the same terms as Perl itself. 
     264 
    238265 
    239266=cut