~ubuntu-branches/ubuntu/precise/libxml-atom-perl/precise

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Jose Luis Rivas, David Paleino, Jose Luis Rivas, gregor herrmann
  • Date: 2008-11-02 03:28:32 UTC
  • mfrom: (1.1.6 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20081102032832-k23blym1wri0585p
Tags: 0.29-1
[ David Paleino ]
* debian/control: removed myself from Uploaders

[ Jose Luis Rivas ]
* New upstream release
* Switched to debhelper v7, updated debian/rules, debian/compat and build
  dependencies to debhelper >= 7 on debian/control.
* Bumped to Standards-Version 3.8.0 wo/ changes needed.
* debian/copyright: Updated formatting.
* Added me as Uploader.

[ gregor herrmann ]
* debian/watch: extended regexp for matching upstream releases.
* debian/copyright:
  - Perl is licensed under GPL-1+, not GPL-2+
  - add information for files under inc/
  - add Upstream-Name header
* debian/control:
  - change my email address
  - re-wrap a long line
  - remove a spurious space

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id$
 
1
# $Id: Makefile.PL 97 2008-10-26 00:23:27Z miyagawa $
2
2
 
3
3
use inc::Module::Install;
4
4
 
20
20
features(
21
21
    'Pure perl XML parsing with XML::XPath' => [
22
22
        -default => 0,
23
 
        recommends('XML::XPath'),
 
23
       'XML::XPath' => 0,
24
24
    ],
25
25
    'Client/Server for Atom API' => [
26
26
        -default => 1,
27
 
        recommends('LWP'),
28
 
        recommends('LWP::Authen::Wsse'),
29
 
        recommends('Digest::SHA1'),
30
 
        recommends('DateTime'),
 
27
        LWP => 0,
 
28
        'LWP::Authen::Wsse' => 0,
 
29
        'Digest::SHA1' => 0,
 
30
        'DateTime' => 0,
31
31
    ],
32
 
 
33
32
    'Feed and API Auto-discovery' => [
34
33
        -default => 1,
35
 
        recommends('HTML::Parser'),
 
34
        'HTML::Parser' => 0,
36
35
    ],
37
36
);
38
37