~ubuntu-branches/ubuntu/maverick/libyaml-libyaml-perl/maverick-updates

« back to all changes in this revision

Viewing changes to inc/Module/Install/Include.pm

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu, Jonathan Yu, Nathan Handler, Ryan Niebur, gregor herrmann
  • Date: 2010-05-02 10:52:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100502105235-up9ifbadj7z3hbjl
Tags: 0.33-1
[ Jonathan Yu ]
* New upstream release (Closes: #578629).
* This version has fixes for Perl 5.12
* Use new 3.0 (quilt) source format
* Use new DEP5 copyright format
* Rewrite control description
* Standards-Version 3.8.4 (drop perl version dep)
* Add myself to Uploaders and Copyright

[ Nathan Handler ]
* debian/watch: Update to ignore development releases.

[ Ryan Niebur ]
* Update ryan52's email address

[ gregor herrmann ]
* debian/copyright: update years of upstream copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
package Module::Install::Include;
3
3
 
4
4
use strict;
5
 
use Module::Install::Base;
 
5
use Module::Install::Base ();
6
6
 
7
 
use vars qw{$VERSION $ISCORE @ISA};
 
7
use vars qw{$VERSION @ISA $ISCORE};
8
8
BEGIN {
9
 
        $VERSION = '0.77';
 
9
        $VERSION = '0.91';
 
10
        @ISA     = 'Module::Install::Base';
10
11
        $ISCORE  = 1;
11
 
        @ISA     = qw{Module::Install::Base};
12
12
}
13
13
 
14
14
sub include {