~ubuntu-branches/ubuntu/lucid/libdatetimex-easy-perl/lucid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu, Jonathan Yu, Nathan Handler, Salvatore Bonaccorso, Ryan Niebur
  • Date: 2010-01-09 12:32:07 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100109123207-x3zv4k064v0eu2mt
Tags: 0.088-1
[ Jonathan Yu ]
* New upstream release
* Standards-Version 3.8.3 (no changes)
* Add myself to Uploaders and Copyright
* Rewrite control description
* Refresh to new DEP5 copyright format
* Remove patch, replace with an override
* Update dependencies per upstream

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

[ 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).

[ Ryan Niebur ]
* Update ryan52's email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
package Module::Install::AutoInstall;
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.87';
 
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 AutoInstall { $_[0] }