~ubuntu-branches/ubuntu/jaunty/liblocale-maketext-fuzzy-perl/jaunty

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann, gregor herrmann, Ansgar Burchardt
  • Date: 2008-08-09 18:47:20 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080809184720-hi5s9ok2mielrzy9
Tags: 0.10-1
[ gregor herrmann ]
* 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.
* debian/watch: use dist-based URL.

[ Ansgar Burchardt ]
* New upstream release
* Require perl (>= 5.8) as Build-Depend instead of perl (>= 5.6),
  perl (>= 5.8) | libtest-simple-perl as all perl version in the archive
  satisfy the former
* Drop liblocale-maketext-perl from Build-Depends (now part of Perl)
* Use ${perl:Depends} as dependency instead of giving perl version manually
* Convert debian/copyright to proposed machine-readable format
* Refresh rules for debhelper 7
* Bump Standards Version to 3.8.0 (No changes required)
* Add myself to Uploaders

[ gregor herrmann ]
* Remove uupdate from debian/watch, not helpful in our subversion
  environment.
* debian/copyright: complete stanza for debian/*.
* Add /me to Uploaders.
* Drop liblocale-maketext-perl from Depends too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl
2
 
# $File: //member/autrijus/Locale-Maketext-Fuzzy/Makefile.PL $ $Author: autrijus $
3
 
# $Revision: #1 $ $Change: 544 $ $DateTime: 2002/08/01 21:24:50 $
4
 
 
5
 
require 5.005;
6
 
 
7
 
use ExtUtils::MakeMaker;
8
 
 
9
 
WriteMakefile(
10
 
    AUTHOR              => 'Autrijus Tang (autrijus@autrijus.org)',
11
 
    ABSTRACT            => 'Maketext from already interpolated strings',
12
 
    NAME                => 'Locale::Maketext::Fuzzy',
13
 
    VERSION_FROM        => 'lib/Locale/Maketext/Fuzzy.pm', 
14
 
    DISTNAME            => 'Locale-Maketext-Fuzzy',
15
 
    BINARY_LOCATION     => 'x86/Locale-Maketext-Fuzzy.tar.gz',
16
 
 
17
 
    PREREQ_PM           => {
18
 
        'Test::More'            => '0.01',
19
 
        'Locale::Maketext'      => '0.01',
20
 
    },
21
 
 
22
 
    dist                => {
23
 
        COMPRESS        => 'gzip',
24
 
        SUFFIX          => '.gz',
25
 
    },
26
 
);
27
 
 
 
2
 
 
3
use strict;
 
4
use inc::Module::Install;
 
5
 
 
6
name            'Locale-Maketext-Fuzzy';
 
7
all_from        'lib/Locale/Maketext/Fuzzy.pm';
 
8
requires        'Locale::Maketext';
 
9
build_requires  'Test::More';
 
10
 
 
11
auto_include_deps;
 
12
auto_provides;
 
13
 
 
14
sign; WriteAll;