X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FOptional%2FDependencies.pm;h=6e46f917175aede91538afb2c3ce936b8fb2d147;hb=e3fc11e1540ac502176358aac2d2df20c7d90d7f;hp=b5845d155be9372fb09f34ea885443c610bca223;hpb=a109c954ad63eb85f81de4afd5444a44fae01575;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Optional/Dependencies.pm b/lib/DBIx/Class/Optional/Dependencies.pm index b5845d1..6e46f91 100644 --- a/lib/DBIx/Class/Optional/Dependencies.pm +++ b/lib/DBIx/Class/Optional/Dependencies.pm @@ -66,7 +66,7 @@ my $reqs = { deploy => { req => { - 'SQL::Translator' => '0.11002', + 'SQL::Translator' => '0.11005', }, pod => { title => 'Storage::DBI::deploy()', @@ -115,6 +115,14 @@ my $reqs = { # t/96_is_deteministic_value.t 'DateTime::Format::Strptime'=> '0', + + # t/inflate/datetime_mysql.t + # (doesn't need Mysql itself) + 'DateTime::Format::MySQL' => '0', + + # t/inflate/datetime_pg.t + # (doesn't need PG itself) + 'DateTime::Format::Pg' => '0', }, }, @@ -135,7 +143,6 @@ my $reqs = { ? ( 'Sys::SigAction' => '0', 'DBD::Pg' => '2.009002', - 'DateTime::Format::Pg' => '0', ) : () }, }, @@ -144,7 +151,6 @@ my $reqs = { req => { $ENV{DBICTEST_MYSQL_DSN} ? ( - 'DateTime::Format::MySQL' => '0', 'DBD::mysql' => '0', ) : () }, @@ -170,18 +176,24 @@ my $reqs = { rdbms_asa => { req => { - (scalar grep $_, @ENV{qw/DBICTEST_SYBASE_ASA_DSN DBICTEST_SYBASE_ASA_ODBC_DSN/}) + (scalar grep { $ENV{$_} } (qw/DBICTEST_SYBASE_ASA_DSN DBICTEST_SYBASE_ASA_ODBC_DSN/) ) ? ( 'DateTime::Format::Strptime' => 0, ) : () }, }, -}; + rdbms_db2 => { + req => { + $ENV{DBICTEST_DB2_DSN} + ? ( + 'DBD::DB2' => 0, + ) : () + }, + }, + +}; -sub _all_optional_requirements { - return { map { %{ $reqs->{$_}{req} || {} } } (keys %$reqs) }; -} sub req_list_for { my ($class, $group) = @_; @@ -265,7 +277,11 @@ sub _check_deps { } } -# This is to be called by the author onbly (automatically in Makefile.PL) +sub req_group_list { + return { map { $_ => { %{ $reqs->{$_}{req} || {} } } } (keys %$reqs) }; +} + +# This is to be called by the author only (automatically in Makefile.PL) sub _gen_pod { my $class = shift; my $modfn = __PACKAGE__ . '.pm'; @@ -273,6 +289,8 @@ sub _gen_pod { require DBIx::Class; my $distver = DBIx::Class->VERSION; + my $sqltver = $class->req_list_for ('deploy')->{'SQL::Translator'} + or die "Hrmm? No sqlt dep?"; my @chunks = ( <<"EOC", @@ -287,10 +305,8 @@ sub _gen_pod { EOC '=head1 NAME', "$class - Optional module dependency specifications (for module authors)", - '=head1 SYNOPSIS (EXPERIMENTAL)', + '=head1 SYNOPSIS', < - Somewhere in your build-file (e.g. L's Makefile.PL): ... @@ -350,6 +366,17 @@ EOD push @chunks, ( '=head1 METHODS', + '=head2 req_group_list', + '=over', + '=item Arguments: $none', + '=item Returns: \%list_of_requirement_groups', + '=back', + < version of -DBIx::Class. See the L for a real-world +DBIx::Class. See the L for a real-world example. EOD @@ -380,10 +407,10 @@ This method would normally be used by DBIx::Class core-module author, to indicate to the user that he needs to install specific modules before he will be able to use a specific feature. -For example if the requirements for C are not available, the -returned string would look like: +For example if some of the requirements for C are not available, +the returned string could look like: - Moose >= 0.98, MooseX::Types >= 0.21, namespace::clean (see $class for details) + SQL::Translator >= $sqltver (see $class for details) The author is expected to prepend the necessary text to this message before returning the actual error seen by the user.