~ubuntu-branches/ubuntu/wily/libhijk-perl/wily

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Robin Sheat, Robin Sheat, gregor herrmann
  • Date: 2015-02-13 10:50:34 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20150213105034-xawlya18ln1fsc15
Tags: 0.19-1
[ Robin Sheat ]
* New upstream version, 0.19

[ gregor herrmann ]
* Update copyright years.

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.04';
 
9
        $VERSION = '1.12';
10
10
        @ISA     = 'Module::Install::Base';
11
11
        $ISCORE  = 1;
12
12
}
347
347
                ^ \s*
348
348
                package \s*
349
349
                ([\w:]+)
350
 
                \s* ;
 
350
                [\s|;]*
351
351
                /ixms
352
352
        ) {
353
353
                my ($name, $module_name) = ($1, $1);
705
705
        my @yaml = Parse::CPAN::Meta::LoadFile('META.yml');
706
706
        my $meta = $yaml[0];
707
707
 
708
 
        # Overwrite the non-configure dependency hashs
 
708
        # Overwrite the non-configure dependency hashes
709
709
        delete $meta->{requires};
710
710
        delete $meta->{build_requires};
711
711
        delete $meta->{recommends};