Show
Ignore:
Timestamp:
10/09/08 08:46:12 (3 months ago)
Author:
lopnor
Message:

lang/perl/Apache2-AuthzHatenaPoint?: now uses Module::Install

Location:
lang/perl/Apache2-AuthzHatenaPoint/trunk
Files:
5 modified
2 copied

Legend:

Unmodified
Added
Removed
  • lang/perl/Apache2-AuthzHatenaPoint/trunk

    • Property svn:ignore set to
      pm_to_blib
      blib
      Makefile
      inc
      META.yml
  • lang/perl/Apache2-AuthzHatenaPoint/trunk/MANIFEST

    r8592 r21021  
    11Changes 
     2inc/Module/Install.pm 
     3inc/Module/Install/Base.pm 
     4inc/Module/Install/Can.pm 
     5inc/Module/Install/Fetch.pm 
     6inc/Module/Install/Makefile.pm 
     7inc/Module/Install/Metadata.pm 
     8inc/Module/Install/Win32.pm 
     9inc/Module/Install/WriteAll.pm 
    210lib/Apache2/AuthzHatenaPoint.pm 
    311Makefile.PL 
    412MANIFEST                        This list of files 
    5 META.yml                        Module meta-data (added by MakeMaker) 
     13META.yml 
    614README 
    715t/00_compile.t 
    816t/conf/extra.last.conf.in 
    9 t/TEST.PL 
  • lang/perl/Apache2-AuthzHatenaPoint/trunk/MANIFEST.SKIP

    r20994 r21021  
    1313^t/9\d_.*\.t 
    1414^t/perlcritic 
     15^t/TEST 
     16^t/logs/ 
     17^t/conf/*.conf$ 
     18^t/conf/*.p[lm]$ 
     19^t/htdocs/ 
    1520^tools/ 
    1621\.svn/ 
  • lang/perl/Apache2-AuthzHatenaPoint/trunk/Makefile.PL

    r8592 r21021  
    1 use strict; 
    2 use warnings; 
    3 use ExtUtils::MakeMaker; 
    4 use Apache::TestMM qw(test clean); 
     1use inc::Module::Install; 
     2 
     3BEGIN { 
     4    eval { 
     5        require ModPerl::MM; 
     6        require Apache::TestMM; 
     7    }; 
     8    if ($@) { 
     9        exit 0; 
     10    } 
     11    Apache::TestMM->import( qw(test clean) ); 
     12} 
     13 
     14name 'Apache2-AuthzHatenaPoint'; 
     15all_from 'lib/Apache2/AuthzHatenaPoint.pm'; 
     16requires 'mod_perl2'  => 2.000001; 
     17requires 'Apache::Test' => 0; 
     18requires 'Apache2::AuthenOpenID' => 0; 
     19requires 'Web::Scraper' => 0; 
     20requires 'WWW::HatenaLogin' => 0; 
     21requires 'Time::Piece' => 0; 
     22build_requires 'Test::More' => 0.32; 
    523 
    624Apache::TestMM::filter_args(); 
    725Apache::TestMM::generate_script('t/TEST'); 
    826 
    9 WriteMakefile( 
    10     'NAME'      => 'Apache2::AuthzHatenaPoint', 
    11     'VERSION_FROM' => 'lib/Apache2/AuthzHatenaPoint.pm', # finds $VERSION 
    12     'PREREQ_PM' => { 
    13             'Test::More' => 0.32, 
    14         'mod_perl2'  => 2.000001, 
    15         'Apache::Test' => 0, 
    16         'Apache2::AuthenOpenID' => 0, 
    17         'Web::Scraper' => 0, 
    18         'WWW::HatenaLogin' => 0, 
    19         'Time::Piece' => 0, 
    20     }, 
    21 ); 
     27WriteAll; 
  • lang/perl/Apache2-AuthzHatenaPoint/trunk/t

    • Property svn:ignore set to
      TEST
      logs
      htdocs

  • lang/perl/Apache2-AuthzHatenaPoint/trunk/t/conf

    • Property svn:ignore set to
      apache_test_config.pm
      modperl_inc.pl
      httpd.conf
      extra.last.conf
      modperl_startup.pl