~ubuntu-branches/ubuntu/natty/libgraphics-colornames-perl/natty

« back to all changes in this revision

Viewing changes to Build.PL

  • Committer: Bazaar Package Importer
  • Author(s): Manoj Srivastava
  • Date: 2004-10-01 12:49:42 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041001124942-3qlde82ir9850n0s
Tags: 1.05-1
* New upstream release. 
      - updates to POD
      - correction to Graphics::ColourNames
      - correction to README
      - a filehandle for a rgb.txt file can be specified
      - hooks to support CODE scheme types (as with module
        Graphics::ColorNames::GrayScale 2.00)
      - ColourNames.pm has same version of ColorNames.pm
      - added Graphics::ColourNames alias
      - minor changes to ColorNames.pm
      - corrected typo in REQUIREMENTS (wrong Perl version)
      - uses Module::Load for improved dynamic loading
      - EXISTS works across multiple color schemes
      - bug in FETCH that returned key has been fixed
      - corrected bad link in POD
      - rebuilt distribution with proper META.yml
      - added required rgb.txt for tests to MANIFEST and distro
      * now requires Perl 5.6.0
      - uses IO::File
      - option to parse an rgb.txt file
      - removed TODO from distribution
      - Netscape.pm, HTML.pm and Windows.pm warnings enabled
      - additions and corrections in POD
      - added Build.PL to distribution
      - added hex() and rgb() methods
      - created object-oriented interface
      - additions and corrections in POD

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use Module::Build;
 
2
 
 
3
my $build = Module::Build->new
 
4
    (
 
5
     module_name => 'Graphics::ColorNames',
 
6
     license => 'perl',
 
7
     requires => {
 
8
       'perl'                       => '5.6.0',
 
9
       'base'                       => 0,
 
10
       'Carp'                       => 0,
 
11
       'IO::File'                   => 0,
 
12
       'Module::Load'               => 0.10,
 
13
     },
 
14
     recommends => {
 
15
     },
 
16
     build_requires => {
 
17
       'Test::More'                 => 0,
 
18
       'Test'                       => 0,
 
19
     },
 
20
     create_makefile_pl => 'traditional',
 
21
     dist_author        => 'Robert Rothenberg <rrwo at cpan.org>',
 
22
);
 
23
 
 
24
$build->create_build_script;