Changeset 9097 for lang/perl/Punc

Show
Ignore:
Timestamp:
04/08/08 00:14:12 (8 months ago)
Author:
mizzy
Message:

lang/perl/Punc: Makefile.PL の requires 追加
Punc::Master::CSR はいらないので削除
Punc::Slave::Module: Pod::Text 使ってないから use から削除

Location:
lang/perl/Punc/branches/ssl
Files:
1 removed
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Punc/branches/ssl/Makefile.PL

    r8644 r9097  
    33all_from 'lib/Punc.pm'; 
    44 
    5 requires $_ for (qw/ JSON::RPC::Client /); 
     5requires $_ for (qw/ 
     6                       JSON 
     7                       JSON::RPC::Client 
     8                       Pfacter 
     9                       UNIVERSAL::require 
     10                       YAML 
     11                       Module::Pluggable 
     12                       Crypt::OpenSSL::PKCS10 
     13                       Crypt::OpenSSL::RSA 
     14                       Crypt::OpenSSL::CA 
     15                       HTTP::Daemon 
     16                   /); 
    617 
    718build_requires 'Test::More'; 
  • lang/perl/Punc/branches/ssl/lib/Punc/Slave/Module.pm

    r8644 r9097  
    33use strict; 
    44use warnings; 
    5 use Pod::Text; 
    65use Module::Pluggable; 
    76use Punc::Util;