Show
Ignore:
Timestamp:
07/25/08 03:55:19 (4 months ago)
Author:
hanekomu
Message:

r4871@pcgr: marcel | 2008-07-24 20:37:42 +0200
reverted dist to standard style

Location:
lang/perl/Algorithm-EquivalenceSets/trunk
Files:
4 added
4 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Algorithm-EquivalenceSets/trunk/.shipit

    r12704 r16278  
    1 steps = ApplyYAMLChangeLogVersion, Manifest, DistTest, Commit, Tag, MakeDist, MyUploadCPAN, DistClean, Twitter 
     1steps = FindVersion, ChangeVersion, CheckChangeLog, Manifest, DistTest, Commit, Tag, MakeDist, MyUploadCPAN, DistClean, Twitter 
    22 
    33svk.tagpattern = //local/coderepos/Algorithm-EquivalenceSets/tags/Algorithm-EquivalenceSets-%v 
  • lang/perl/Algorithm-EquivalenceSets/trunk/MANIFEST

    r9727 r16278  
    99inc/Module/Install/Makefile.pm 
    1010inc/Module/Install/Metadata.pm 
    11 inc/Module/Install/StandardTests.pm 
    12 inc/Module/Install/Template.pm 
    1311inc/Module/Install/Win32.pm 
    1412inc/Module/Install/WriteAll.pm 
    1513inc/Test/Compile.pm 
    1614inc/Test/More.pm 
    17 inc/UNIVERSAL/require.pm 
    1815lib/Algorithm/EquivalenceSets.pm 
     16LICENSE 
    1917Makefile.PL 
    2018MANIFEST                        This list of files 
    2119META.yml 
    2220README 
     21t/00_compile.t 
     22t/00_perl_critic.t 
     23t/00_pod.t 
    2324t/01_misc.t 
    2425t/perlcriticrc 
  • lang/perl/Algorithm-EquivalenceSets/trunk/Makefile.PL

    r9727 r16278  
    99 
    1010build_requires 'Test::More' => '0.70'; 
     11build_requires 'Test::Compile'; 
    1112 
    12 process_templates( 
    13     first_year => 2007, 
    14     rest_from  => "$ENV{HOME}/.mitlib/standard_pod", 
    15     start_tag  => '{%', 
    16     end_tag    => '%}', 
    17 ); 
    18  
    19 use_standard_tests(without => 'pod_coverage'); 
    2013auto_install; 
    2114auto_include; 
  • lang/perl/Algorithm-EquivalenceSets/trunk/lib/Algorithm/EquivalenceSets.pm

    r9727 r16278  
    55 
    66 
    7 our $VERSION = '0.02'; 
     7our $VERSION = '0.03'; 
    88 
    99 
     
    5151__END__ 
    5252 
    53 {% USE p = PodGenerated %} 
    54  
    5553=head1 NAME 
    5654 
    57 {% p.package %} - Group sets transitively 
     55Algorithm::EquivalenceSets - Group sets transitively 
    5856 
    5957=head1 SYNOPSIS 
    6058 
    61     use {% p.package %}; 
     59    use Algorithm::EquivalenceSets; 
    6260 
    6361    my @sets = ( 
     
    9088context, or as a reference to that array in scalar context. 
    9189 
    92 {% PROCESS standard_pod %} 
     90=head1 BUGS AND LIMITATIONS 
     91 
     92No bugs have been reported. 
     93 
     94Please report any bugs or feature requests through the web interface at 
     95L<http://rt.cpan.org>. 
     96 
     97=head1 INSTALLATION 
     98 
     99See perlmodinstall for information and options on installing Perl modules. 
     100 
     101=head1 AVAILABILITY 
     102 
     103The latest version of this module is available from the Comprehensive Perl 
     104Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 
     105site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 
     106 
     107=head1 AUTHOR 
     108 
     109Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 
     110 
     111=head1 COPYRIGHT AND LICENSE 
     112 
     113Copyright 2007 by Marcel GrE<uuml>nauer 
     114 
     115This library is free software; you can redistribute it and/or modify 
     116it under the same terms as Perl itself. 
    93117 
    94118=cut