Skip to content

Commit d13408d

Browse files
authored
Merge pull request #904 from metacpan/oalders/rogue
Don't index Acme::DependOnEverything
2 parents ac16fb1 + 6fe8494 commit d13408d

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

lib/MetaCPAN/Document/File/Set.pm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ sub _build_query_favorite {
4444
}
4545

4646
my @ROGUE_DISTRIBUTIONS = qw(
47+
Acme-DependOnEverything
4748
Bundle-Everything
4849
kurila
4950
perl-5.005_02+apache1.3.3+modperl

lib/MetaCPAN/Model/Search.pm

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ package MetaCPAN::Model::Search;
33
use MetaCPAN::Moose;
44

55
use Const::Fast qw( const );
6-
use Log::Contextual qw( :log :dlog );
7-
use MooseX::StrictConstructor;
86
use Cpanel::JSON::XS ();
9-
107
use Hash::Merge qw( merge );
118
use List::Util qw( min uniq );
9+
use Log::Contextual qw( :log :dlog );
1210
use MetaCPAN::Types qw( Object Str );
1311
use MetaCPAN::Util qw( single_valued_arrayref_to_scalar );
12+
use MooseX::StrictConstructor;
1413

1514
has es => (
1615
is => 'ro',
@@ -25,9 +24,18 @@ has index => (
2524
required => 1,
2625
);
2726

28-
const my $RESULTS_PER_RUN => 200;
29-
const my @ROGUE_DISTRIBUTIONS =>
30-
qw(kurila perl_debug perl_mlb perl-5.005_02+apache1.3.3+modperl pod2texi perlbench spodcxx Bundle-Everything);
27+
const my $RESULTS_PER_RUN => 200;
28+
const my @ROGUE_DISTRIBUTIONS => qw(
29+
Acme-DependOnEverything
30+
Bundle-Everything
31+
kurila
32+
perl-5.005_02+apache1.3.3+modperl
33+
perlbench
34+
perl_debug
35+
perl_mlb
36+
pod2texi
37+
spodcxx
38+
);
3139

3240
sub _not_rogue {
3341
my @rogue_dists

0 commit comments

Comments
 (0)