Skip to content

Commit e46a7d7

Browse files
committed
Update Extutils-MakerMaker to CPAN version 7.76
Fixes problems with semantic versioning in podlators 7.76 Fri 23 May 20:14:03 BST 2025 No changes since v7.75_01 7.75_01 Fri 23 May 15:03:40 BST 2025 Core fixes: - Allow dotted decimal versions in absence of CPAN::Meta::Requirements
1 parent ab79bb2 commit e46a7d7

34 files changed

+35
-35
lines changed

Porting/Maintainers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ package Maintainers;
494494
},
495495

496496
'ExtUtils::MakeMaker' => {
497-
'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.74.tar.gz',
497+
'DISTRIBUTION' => 'BINGOS/ExtUtils-MakeMaker-7.76.tar.gz',
498498
'SYNCINFO' => 'yorton on Sun Mar 26 16:20:23 2023',
499499
'FILES' => q[cpan/ExtUtils-MakeMaker],
500500
'EXCLUDED' => [

cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require Exporter;
77
our @ISA = qw(Exporter);
88
our @EXPORT = qw(cp rm_f rm_rf mv cat eqtime mkpath touch test_f test_d chmod
99
dos2unix);
10-
our $VERSION = '7.74';
10+
our $VERSION = '7.76';
1111
$VERSION =~ tr/_//d;
1212

1313
my $Is_VMS = $^O eq 'VMS';

cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ our @ISA = qw(Exporter);
1010

1111
our @EXPORT = qw(test_harness pod2man perllocal_install uninstall
1212
warn_if_old_packlist test_s cp_nonempty);
13-
our $VERSION = '7.74';
13+
our $VERSION = '7.76';
1414
$VERSION =~ tr/_//d;
1515

1616
my $Is_VMS = $^O eq 'VMS';

cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ExtUtils::Liblist;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '7.74';
6+
our $VERSION = '7.76';
77
$VERSION =~ tr/_//d;
88

99
use File::Spec;

cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use 5.006;
1111

1212
use strict;
1313
use warnings;
14-
our $VERSION = '7.74';
14+
our $VERSION = '7.76';
1515
$VERSION =~ tr/_//d;
1616

1717
use ExtUtils::MakeMaker::Config;

cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use warnings;
55
use ExtUtils::MakeMaker::Config;
66

7-
our $VERSION = '7.74';
7+
our $VERSION = '7.76';
88
$VERSION =~ tr/_//d;
99

1010
require ExtUtils::Liblist;

cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_AIX.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package ExtUtils::MM_AIX;
22

33
use strict;
44
use warnings;
5-
our $VERSION = '7.74';
5+
our $VERSION = '7.76';
66
$VERSION =~ tr/_//d;
77

88
use ExtUtils::MakeMaker::Config;

cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package ExtUtils::MM_Any;
22

33
use strict;
44
use warnings;
5-
our $VERSION = '7.74';
5+
our $VERSION = '7.76';
66
$VERSION =~ tr/_//d;
77

88
use Carp;

cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_BeOS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ require ExtUtils::MM_Any;
2727
require ExtUtils::MM_Unix;
2828

2929
our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
30-
our $VERSION = '7.74';
30+
our $VERSION = '7.76';
3131
$VERSION =~ tr/_//d;
3232

3333

cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Cygwin.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require ExtUtils::MM_Unix;
1010
require ExtUtils::MM_Win32;
1111
our @ISA = qw( ExtUtils::MM_Unix );
1212

13-
our $VERSION = '7.74';
13+
our $VERSION = '7.76';
1414
$VERSION =~ tr/_//d;
1515

1616

0 commit comments

Comments
 (0)