Skip Menu |

This queue is for tickets about the release CPAN distribution.

Report information
The Basics
Id: 16008
Status: resolved
Worked: 2 hours (120 min)
Priority: 0/
Queue: release

People
Owner: bdfoy [...] cpan.org
Requestors:
Cc:
AdminCc:

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



Subject: release broken in sf_login
The layout for SF.net has changed. This patch fixes a broken sf_login method. Also, separately, "release" and "Module::Release" are unknown to the CPAN shell for me ... may want to look into it.
--- /usr/local/lib/perl5/site_perl/5.8.4/Module/Release.pm 2005-10-24 14:06:19.000000000 -0700 +++ /Users/pudge/Desktop/Release.pm 2005-11-21 10:12:41.000000000 -0800 @@ -492,7 +492,7 @@ print $content if $self->{debug}; my $sf_user = $self->{config}->sf_user; - if( $content =~ m/welcomes.*$sf_user/i ) { + if( $content =~ m/welcome.*$sf_user/i ) { print "Logged in!\n"; } else { print "Not logged in! Aborting\n";
I fixed the pattern matching in the sf_login, and that should work until SourceForge changes its site again. :)