~ubuntu-branches/ubuntu/saucy/libacme-bleach-perl/saucy

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Fabrizio Regalli, Salvatore Bonaccorso, Fabrizio Regalli
  • Date: 2011-06-15 21:03:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110615210355-aej5cltywdw0ippj
Tags: 1.13-1
[ Salvatore Bonaccorso ]
* debian/control: Changed: Replace versioned (build-)dependency on
  perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as
  permitted by Debian Policy 3.8.3).
* debian/rules: override dh_auto_install target: Do not install unbleach.pl
  in /usr/share/perl5/Acme/unbleach.pl.

[ Fabrizio Regalli ]
* New upstream release
* Bump to 3.9.2 Standard-Version.
* Switch to DEP5 license format.
* Add myself to Uploaders.
* Switch d/compat to 8.
* Build-Depends: switch to debhelper (>= 8).
* Bump to 3.0 quilt format.

Show diffs side-by-side

added added

removed removed

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