Skip Menu |

This queue is for tickets about the Cvs CPAN distribution.

Report information
The Basics
Id: 25057
Status: open
Priority: 0/
Queue: Cvs

People
Owner: Nobody in particular
Requestors: mb [...] computer-leipzig.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.07
Fixed in: (no value)



Subject: module_list fails: cvs update command output not recognized
The output of the cvs update command is not recognized properly, at least the output of the sourceforge.net cvs servers. This leads to the module_list method always reporting no modules. Attached is a patch.
Subject: Update.pm-regex-fix.diff
--- Cvs/Command/Update.pm.orig 2007-02-20 19:39:21.000000000 +0100 +++ Cvs/Command/Update.pm 2007-02-20 19:40:13.000000000 +0100 @@ -64,9 +64,9 @@ ); $main->push_handler ( - qr/^cvs server: New directory `(.*)' -- ignored$/, sub + qr/^cvs (server|update): New directory `(.*)' -- ignored$/, sub { - $result->push_ignored_directory(shift->[1]); + $result->push_ignored_directory(shift->[2]); } ); return $self;
From: bunk [...] iat.uni-leipzig.de
On Mi. 21. Feb. 2007, 05:07:22, micha137 wrote: Show quoted text
> The output of the cvs update command is not recognized properly, at > least the output of the sourceforge.net cvs servers. This leads to the > module_list method always reporting no modules. > > Attached is a patch.
Possibly the output is also produces by the cvs command on the client, which is for me cvs --version: Concurrent Versions System (CVS) 1.12.13 (client/server)