Ricardo Signes

Results 100 comments of Ricardo Signes

I brought this same complaint to IRC this week, without doing the courteous thing and first looking for a GitHub issue. Toby is right: it's a real mess. Going to...

Should this have the label group:Perl ?

(I just commented on #1468 with a suggestion.)

I come to this ticket by way of fretting about the `perl` distribution. The "ordered list of files" approach looks good to me, although I think I might like one...

This behavior was originally an implementation detail, but was intentionally left in place before being deployed, as a means to discourage changing case, because it breaks prerequisite chains. That is,...

``` perl use 5.20.0; use experimental 'postderef'; use Parse::CPAN::Packages::Fast; my @lines = `gzcat $ENV{HOME}/Sync/minicpan/modules/02packages.details.txt.gz`; chomp @lines; shift @lines until $lines[0] =~ /^A/i; my %seen; for my $line (@lines) { next...

Addressed by rjbs/no-binary-dists

If a dist has no `$pmfiles`, it is not indexed _and no report is generated_. See `lib/PAUSE/dist.pm +549`. `$pmfiles` is all the files from `ExtUtils::Manifest::manifind()` that end in `.pm` This...

It's interesting that he gets that error, but PAUSE will never index a dist with `blib`. From PAUSE::dist: ``` perl push @m, $tf->format(qq{The distribution contains a blib/ directory and is...

Looking at mldistwatch.pm, I find: ``` perl $dio->examine_pms; # will switch user my $main_pkg = $dio->_package_governing_permission; if ($self->_userid_has_permissions_on_package($userid, $main_pkg)) { $dbh->commit; } else { $dio->alert( "Uploading user has no permissions...