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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu, Jonathan Yu, Ryan Niebur, Nathan Handler, gregor herrmann
  • Date: 2009-09-20 17:10:22 UTC
  • mfrom: (1.1.8 upstream) (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090920171022-e1sqh29t64rqg8l4
Tags: 0.30-1
[ Jonathan Yu ]
* New upstream release
  + Enable warnings in Catalyst::View::TT and output from the TT helper
  + Add support for running render with an undefined context
* Standards-Version 3.8.3
* Reformat description paragraph
* Drop version dep on perl and Catalyst, they are satisfied by oldstable
* Add Test-Pod-{,Coverage} to B-D-I

[ Ryan Niebur ]
* Remove Florian Ragwitz from Uploaders (Closes: #523242)

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

[ gregor herrmann ]
* Bump versioned debhelper build dependency to 7.2.13 to make sure we pass
  --skipdeps to Module::AutoInstall.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
package Module::Install::Can;
3
3
 
4
4
use strict;
5
 
use Module::Install::Base;
6
 
use Config ();
7
 
### This adds a 5.005 Perl version dependency.
8
 
### This is a bug and will be fixed.
9
 
use File::Spec ();
10
 
use ExtUtils::MakeMaker ();
 
5
use Config                ();
 
6
use File::Spec            ();
 
7
use ExtUtils::MakeMaker   ();
 
8
use Module::Install::Base ();
11
9
 
12
 
use vars qw{$VERSION $ISCORE @ISA};
 
10
use vars qw{$VERSION @ISA $ISCORE};
13
11
BEGIN {
14
 
        $VERSION = '0.77';
 
12
        $VERSION = '0.91';
 
13
        @ISA     = 'Module::Install::Base';
15
14
        $ISCORE  = 1;
16
 
        @ISA     = qw{Module::Install::Base};
17
15
}
18
16
 
19
17
# check if we can load some module
80
78
 
81
79
__END__
82
80
 
83
 
#line 158
 
81
#line 156