~ubuntu-branches/ubuntu/vivid/libspoon-perl/vivid

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Krzyżaniak (eloy), Krzysztof Krzyżaniak (eloy), gregor herrmann
  • Date: 2008-07-01 10:38:36 UTC
  • mfrom: (1.1.2 upstream) (3.1.1 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080701103836-04om5jc04qt53mt0
Tags: 0.24-1
[ Krzysztof Krzyżaniak (eloy) ]
* New upstream release
* debian/watch: remove uupdate part
* debian/control:
 + Standards-Version updated to 3.8.0 (without any changes)
 + Uploaders: added me
 + BuildDepends: increase dependency for debhelper to (>= 7)
* debian/rules: used debhelper 7 simple example
* debian/compat: increase to 7 (without any changes)

[ gregor herrmann <gregoa@debian.org> ]
* Take over for the Debian Perl Group with maintainer's permission
  (http://lists.debian.org/debian-perl/2008/06/msg00039.html)
* debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
  field (source stanza); Homepage field (source stanza). Changed:
  Maintainer set to Debian Perl Group <pkg-perl-
  maintainers@lists.alioth.debian.org> (was: Florian Ragwitz
  <rafl@debian.org>); Florian Ragwitz <rafl@debian.org> moved to
  Uploaders.
* debian/watch: use dist-based URL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use inc::Module::Install;
 
2
require File::Spec;
2
3
 
3
 
name('Spoon');
4
 
author('Brian Ingerson <ingy@cpan.org>');
5
 
abstract('Out of the Cutlery Drawer');
6
 
license('perl');
7
 
version_from('lib/Spoon.pm');
 
4
name        'Spoon';
 
5
all_from    'lib/Spoon.pm';
8
6
 
9
7
requires(qw(
10
8
    perl 5.6.1
11
9
    Spiffy 0.22
12
10
    IO::All 0.32
13
11
    Template 2.10
 
12
    Time::HiRes 0
 
13
    URI 0
 
14
    DB_File 0
14
15
));
15
16
 
16
 
clean_files('t/tmp', 't/output');
 
17
clean_files(
 
18
    File::Spec->catdir(qw(t tmp)),
 
19
    File::Spec->catdir(qw(t output)),
 
20
);
17
21
 
18
 
&WriteAll();
 
22
WriteAll;