~ubuntu-branches/ubuntu/karmic/liborlite-perl/karmic

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Nathan Handler, Brian Cassidy, Nathan Handler, gregor herrmann
  • Date: 2009-06-01 01:53:05 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090601015305-y5iehdm4fx78brya
Tags: 1.22-1
[ Brian Cassidy ] 
* debian/control:
  + bump deps to match upstream
  + add libfile-temp-perl to deps
  + Standards-Version 3.8.1

[ Nathan Handler ]
* New upstream release
* debian/control:
  - Add myself to list of uploaders

[ gregor herrmann ]
* debian/control: slightly improve short description.

Show diffs side-by-side

added added

removed removed

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