~ubuntu-branches/ubuntu/quantal/libcatalyst-view-tt-perl/quantal

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Florian Schlichting, Ansgar Burchardt, Salvatore Bonaccorso, Florian Schlichting
  • Date: 2012-02-17 21:44:30 UTC
  • mfrom: (1.1.13) (3.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20120217214430-qf31mxpy2bc8vajb
Tags: 0.38-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.

[ Florian Schlichting ]
* Imported Upstream version 0.38.
* Added Luke Saunders to upstream copyright holders (he was added to
  lib/Catalyst/View/TT.pm in version 0.35)
* Added fix_test_warning.patch.
* Added myself to Uploaders and copyright.

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(@_);