~ubuntu-branches/ubuntu/trusty/libyaml-libyaml-perl/trusty-security

« back to all changes in this revision

Viewing changes to inc/Module/Install.pm

  • Committer: Package Import Robot
  • Author(s): gregor herrmann, Salvatore Bonaccorso, gregor herrmann
  • Date: 2013-10-11 18:37:51 UTC
  • mfrom: (5.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20131011183751-d8t2kt15prglf5db
Tags: 0.41-1
[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs

[ gregor herrmann ]
* New upstream release.
* Update years of copyright.
* Add patch to disable maintainer helper script.
* Drop build dependency on not (yet) used libyaml-dev.
* Declare compliance with Debian Policy 3.9.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        # This is not enforced yet, but will be some time in the next few
32
32
        # releases once we can make sure it won't clash with custom
33
33
        # Module::Install extensions.
34
 
        $VERSION = '1.02';
 
34
        $VERSION = '1.06';
35
35
 
36
36
        # Storage for the pseudo-singleton
37
37
        $MAIN    = undef;
451
451
}
452
452
 
453
453
sub _cmp ($$) {
454
 
        _version($_[0]) <=> _version($_[1]);
 
454
        _version($_[1]) <=> _version($_[2]);
455
455
}
456
456
 
457
457
# Cloned from Params::Util::_CLASS
467
467
 
468
468
1;
469
469
 
470
 
# Copyright 2008 - 2011 Adam Kennedy.
 
470
# Copyright 2008 - 2012 Adam Kennedy.