~ubuntu-branches/ubuntu/wily/libclass-accessor-grouped-perl/wily

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Fabrizio Regalli, Ansgar Burchardt, Salvatore Bonaccorso, Fabrizio Regalli
  • Date: 2011-12-01 23:52:13 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20111201235213-nppamlddtxqzgo5e
Tags: 0.10004-1
[ Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.

[ Salvatore Bonaccorso ]
* debian/copyright: Replace DEP5 Format-Specification URL from
  svn.debian.org to anonscm.debian.org URL.

[ Fabrizio Regalli ]
* Imported Upstream version 0.10004
* Update d/copyright to latest .174 revision of DEP-5 format
* Fixed missing-license-text-in-dep5-copyright lintian message
* Added version (>= 1.11) to libclass-xsaccessor-perl dependency
* Added version (>= 0.05) to libsub-name-perl dependency
* Added libdevel-hide-perl as B-D-I

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
use vars qw{$VERSION @ISA $ISCORE};
8
8
BEGIN {
9
 
        $VERSION = '1.01';
 
9
        $VERSION = '1.04';
10
10
        @ISA     = 'Module::Install::Base';
11
11
        $ISCORE  = 1;
12
12
}
73
73
    );
74
74
}
75
75
 
 
76
sub installdeps_target {
 
77
    my ($self, @args) = @_;
 
78
 
 
79
    $self->include('Module::AutoInstall');
 
80
    require Module::AutoInstall;
 
81
 
 
82
    Module::AutoInstall::_installdeps_target(1);
 
83
 
 
84
    $self->auto_install(@args);
 
85
}
 
86
 
76
87
sub auto_install_now {
77
88
    my $self = shift;
78
89
    $self->auto_install(@_);