Codebase list libcatmandu-mab2-perl / a924c69
bump version Johann Rolschewski 9 years ago
3 changed file(s) with 24 addition(s) and 30 deletion(s). Raw diff Collapse all Expand all
00 Changelog for Catmandu-MAB2
1
2 0.07 2014-06-02
3 - transform Fix function to new syntax
4 - fix documentation
5 - fix .gitignore
6 - edit dist.ini
17
28 0.06 2014-04-04
39 - XML parser should ignore PerlIO layers
0
10 use strict;
21 use warnings;
32
87
98
109 my %WriteMakefileArgs = (
11 "ABSTRACT" => "Catmandu modules for working with MAB2 data.\r",
10 "ABSTRACT" => "Catmandu modules for working with MAB2 data.",
1211 "AUTHOR" => "Johann Rolschewski <rolschewski\@gmail.com>",
13 "BUILD_REQUIRES" => {},
1412 "CONFIGURE_REQUIRES" => {
1513 "ExtUtils::MakeMaker" => "6.30"
1614 },
2119 "LICENSE" => "perl",
2220 "NAME" => "Catmandu::MAB2",
2321 "PREREQ_PM" => {
24 "Catmandu" => "0.7",
22 "Catmandu" => "0.9103",
23 "Catmandu::SRU" => "0.032",
2524 "Encode" => "2.5",
2625 "Moo" => "1.0",
2726 "Readonly" => "1.0",
2827 "XML::LibXML::Reader" => "2.0"
2928 },
30 "TEST_REQUIRES" => {},
31 "VERSION" => "0.06",
29 "VERSION" => "0.07",
3230 "test" => {
3331 "TESTS" => "t/*.t"
3432 }
3533 );
3634
3735
36 my %FallbackPrereqs = (
37 "Catmandu" => "0.9103",
38 "Catmandu::SRU" => "0.032",
39 "Encode" => "2.5",
40 "Moo" => "1.0",
41 "Readonly" => "1.0",
42 "XML::LibXML::Reader" => "2.0"
43 );
44
45
3846 unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
39 my $tr = delete $WriteMakefileArgs{TEST_REQUIRES};
40 my $br = $WriteMakefileArgs{BUILD_REQUIRES};
41 for my $mod ( keys %$tr ) {
42 if ( exists $br->{$mod} ) {
43 $br->{$mod} = $tr->{$mod} if $tr->{$mod} > $br->{$mod};
44 }
45 else {
46 $br->{$mod} = $tr->{$mod};
47 }
48 }
49 }
50
51 unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
52 my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
53 my $pp = $WriteMakefileArgs{PREREQ_PM};
54 for my $mod ( keys %$br ) {
55 if ( exists $pp->{$mod} ) {
56 $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
57 }
58 else {
59 $pp->{$mod} = $br->{$mod};
60 }
61 }
47 delete $WriteMakefileArgs{TEST_REQUIRES};
48 delete $WriteMakefileArgs{BUILD_REQUIRES};
49 $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
6250 }
6351
6452 delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
33 copyright_year = 2013
44 copyright_holder = Johann Rolschewski
55
6 version = 0.06
6 version = 0.07
77
88 [@Basic]
99 [MetaJSON]