~ubuntu-branches/ubuntu/natty/libtext-autoformat-perl/natty

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2008-03-06 18:20:51 UTC
  • mfrom: (1.1.3 upstream) (4.1.1 hardy)
  • Revision ID: james.westby@ubuntu.com-20080306182051-0tcj7rqxsw4p5kx8
Tags: 1.14.0-1
* debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
  field (source stanza); Homepage field (source stanza). Removed: XS-
  Vcs-Svn fields.
* debian/rules: delete /usr/lib/perl5 only if it exists (closes: #468013).
* debian/watch: use dist-based URL.

* New upstream release.
* debian/copyright: add specific upstream source location, about years of
  copyright, license wording, and references to license file on Debian
  systems.
* Set Standards-Version to 3.7.3 (no changes).
* debian/rules: update with dh-make-perl's help.
* Drop debian/libtext-autoformat-perl.*: don't install README anymore;
  handle examples from debian/rules.
* debian/control: add libversion-perl to Build-Depends-Indep, add /me to
  Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
use warnings;
1
3
use ExtUtils::MakeMaker;
 
4
 
2
5
WriteMakefile(
3
 
                NAME    => q[Text::Autoformat],
4
 
                VERSION => q[1.13],
5
 
                PREREQ_PM => { 'Text::Reform' => 1.11 },
6
 
 
7
 
             );
 
6
    NAME                => 'Text::Autoformat',
 
7
    AUTHOR              => 'Damian Conway <DCONWAY@CPAN.org>',
 
8
    VERSION_FROM        => 'lib/Text/Autoformat.pm',
 
9
    ABSTRACT_FROM       => 'lib/Text/Autoformat.pm',
 
10
    PL_FILES            => {},
 
11
    PREREQ_PM => {
 
12
        'Test::More' => 0,
 
13
        'Text::Reform' => 1.11,
 
14
        'version'    => 0,
 
15
    },
 
16
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
 
17
    clean               => { FILES => 'Text-Autoformat-*' },
 
18
);