-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Indexing fails on perl tarball download. #26
Comments
Can you tell me if your package index has entries for the perl tarball, and for which distribution is it trying to fetch perl as a dependency? |
App::Cpan 1.5701 F/FA/FAKE/perl-5.12.2.tar.gz |
Might be a pinto bug |
Given the contents of your SQLite DB and state.storable, the issue is that thispan-indexer still believes the Perl tarball is To work around this (until a more permanent fix is available), you can either remove your state file and DB and restart the indexing from scratch; or, you can edit the state file and DB to change the indexer's notion of perl_tarball. For the DB: find the "perl" distribution and set its tarball_path field to the right value. UPDATE distribution SET tarball_path = "http://.../authors/id/F/FA/FAKE/perl-5.12.2.tar.gz" WHERE name = "perl"; For the Storable save file, it's a little more involved: # write the new save file
perl -MStorable -E 'my $save = retrieve(q{state.storable}); $save->{perl_tarball} = q{F/FA/FAKE/perl-5.12.2.tar.gz}; nstore($save, q{state.storable.2})' If no exceptions appear, |
As seen with you this does not work. |
Fails on not found tarball and so stop indexing and so fails.
Cheers!
The text was updated successfully, but these errors were encountered: