Subject: | Casing of *::Timestamp is incorrect |
The Task module lists "DBIx::Class::Timestamp" as one of its dependencies, but that module does not currently exist on the CPAN.
It looks like the module in question was renamed, from *::Timestamp to *::TimeStamp, in 2007:
$ perl -MBackPAN::Index -MDateTime -de 0
DB<1> $b = BackPAN::Index->new;
DB<2> x map { sprintf 'v%s on %s', $_->version, DateTime->from_epoch(epoch=>$_->date) } $b->releases('DBIx-Class-Timestamp')->search(undef,{order_by=>"version"})
0 'v0.1 on 2007-03-18T16:16:23'
DB<3> x map { sprintf 'v%s on %s', $_->version, DateTime->from_epoch(epoch=>$_->date) } $b->releases('DBIx-Class-TimeStamp')->search(undef,{order_by=>"version"})
0 'v0.01 on 2007-03-18T18:37:52'
1 'v0.02 on 2007-03-23T23:42:19'
2 'v0.03 on 2007-04-04T02:13:06'
3 'v0.04 on 2007-04-27T15:45:37'
4 'v0.05 on 2007-10-30T17:20:04'
5 'v0.06 on 2008-08-27T15:47:03'
6 'v0.07 on 2009-01-21T15:31:18'
7 'v0.08 on 2009-04-23T22:45:42'
8 'v0.09 on 2009-06-22T13:25:23'
9 'v0.09 on 2009-06-22T13:12:28'
10 'v0.10 on 2009-06-23T18:05:24'
11 'v0.11 on 2009-06-23T18:57:15'
12 'v0.12 on 2009-06-30T20:28:49'
13 'v0.13 on 2010-05-22T01:28:32'
14 'v0.14 on 2010-09-05T15:01:37'
Kind of odd since Task-CatInABox was released in 2008. :) Maybe something in the CPAN index changed, no longer accepting *::Timestamp?