~ubuntu-branches/ubuntu/raring/libmro-compat-perl/raring

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Xavier Guimard, Nathan Handler, Ansgar Burchardt, gregor herrmann, Xavier Guimard
  • Date: 2012-12-14 22:30:58 UTC
  • mfrom: (1.1.5) (2.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20121214223058-c4nkl0tjko2m6che
Tags: 0.12-1
[ Nathan Handler ]
* debian/watch: Update to ignore development releases.
* Email change: Nathan Handler -> nhandler@debian.org

[ Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.

[ gregor herrmann ]
* debian/control: update {versioned,alternative} (build) dependencies.
* Improve long description. Thanks to Martin Eberhard Schauer for the
  bug report, and Russ Allbery and Justin B Rye for their linguistic
  help. (Closes: #695036)
* Remove unused ${shlibs:Depends} from Depends.

[ Xavier Guimard ]
* Imported Upstream version 0.12
* Update source format to 3.0 (quilt)
* Bump Standards-Version to 3.9.4
* Use debhelper 8
* Update debian/copyright (years and format)
* Update debian/rules to use dh

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
use strict 'vars';
5
5
use vars qw{$VERSION};
6
6
BEGIN {
7
 
        $VERSION = '0.91';
 
7
        $VERSION = '1.06';
8
8
}
9
9
 
10
10
# Suspend handler for "redefined" warnings
51
51
#line 106
52
52
 
53
53
sub is_admin {
54
 
        $_[0]->admin->VERSION;
 
54
        ! $_[0]->admin->isa('Module::Install::Base::FakeAdmin');
55
55
}
56
56
 
57
57
sub DESTROY {}
58
58
 
59
59
package Module::Install::Base::FakeAdmin;
60
60
 
 
61
use vars qw{$VERSION};
 
62
BEGIN {
 
63
        $VERSION = $Module::Install::Base::VERSION;
 
64
}
 
65
 
61
66
my $fake;
62
67
 
63
68
sub new {
75
80
 
76
81
1;
77
82
 
78
 
#line 154
 
83
#line 159