Skip to content

Commit aa71a64

Browse files
committed
Versions
1 parent 71de47e commit aa71a64

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-13
lines changed

DBI.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use warnings;
1515

1616
our ($XS_VERSION, $VERSION);
1717
BEGIN {
18-
$VERSION = "1.644"; # ==> ALSO update the version in the pod text below!
18+
$VERSION = "1.645"; # ==> ALSO update the version in the pod text below!
1919
$XS_VERSION = $VERSION;
2020
$VERSION =~ tr/_//d;
2121
}
@@ -147,7 +147,7 @@ sure that your issue isn't related to the driver you're using.
147147
148148
=head2 NOTES
149149
150-
This is the DBI specification that corresponds to DBI version 1.644
150+
This is the DBI specification that corresponds to DBI version 1.645
151151
(see L<DBI::Changes> for details).
152152
153153
The DBI is evolving at a steady pace, so it's good to check that

Makefile.PL

+12-8
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ if (($ENV{LANG}||"") =~ m/utf-?8/i) {
4848
sleep 1;
4949
}
5050

51+
if ($^O eq "MSWin32" && $] < 5.012 && $File::Spec::VERSION < 3.31) {
52+
warn "Windows requires File::Spec-3.31, which is CORE as of perl-5.11.3\n";
53+
warn "As this is just perl-$] with File::Spec-$File::Spec::VERSION\n";
54+
exit 1;
55+
}
56+
5157
my %opts = (
5258
NAME => "DBI",
5359
AUTHOR => 'DBI team ([email protected])',
@@ -67,19 +73,14 @@ my %opts = (
6773
IRC => "irc://irc.perl.org/#dbi",
6874
},
6975
suggests => {
70-
"RPC::PlServer" => 0.2001,
76+
"RPC::PlServer" => 0.2020,
7177
"Net::Daemon" => 0,
72-
"SQL::Statement" => 1.402,
73-
"Clone" => 0.34,
78+
"SQL::Statement" => 1.414,
79+
"Clone" => 0.47,
7480
"MLDBM" => 0,
7581
"DB_File" => 0,
7682
},
7783
},
78-
PREREQ_PM => {
79-
$^O eq "MSWin32"
80-
? ("File::Spec" => 3.31)
81-
: (),
82-
},
8384
CONFLICTS => {
8485
"SQL::Statement" => "1.33",
8586
"DBD::AnyData" => "0.110",
@@ -103,6 +104,9 @@ my %opts = (
103104
PREOP => '$(MAKE) -f Makefile.old distdir',
104105
COMPRESS => "gzip -v9", SUFFIX => "gz",
105106
},
107+
macro => {
108+
TARFLAGS => "--format=ustar -c -v -f",
109+
},
106110
);
107111
$opts{CAPI} = "TRUE" if $Config{archname} =~ /-object\b/i;
108112

cpanfile

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ requires "XSLoader";
22

33
recommends "Encode" => "3.21";
44

5-
suggests "Clone" => "0.34";
5+
suggests "Clone" => "0.47";
66
suggests "DB_File" => "0";
77
suggests "MLDBM" => "0";
88
suggests "Net::Daemon" => "0";
9-
suggests "RPC::PlServer" => "0.2001";
10-
suggests "SQL::Statement" => "1.402";
9+
suggests "RPC::PlServer" => "0.2020";
10+
suggests "SQL::Statement" => "1.414";
1111

1212
conflicts "DBD::Amazon" => "0.10";
1313
conflicts "DBD::AnyData" => "0.110";
@@ -32,4 +32,6 @@ on "build" => sub {
3232

3333
on "test" => sub {
3434
requires "Test::More" => "0.90"; # For done_testing()
35+
36+
recommends "Test::More" => "1.302199";
3537
};

0 commit comments

Comments
 (0)