In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/3916408ad57e7e4163e718920fc76f876294c442?hp=1031545cd947048f30a26d85f356af2eae8f9652>
- Log ----------------------------------------------------------------- commit 3916408ad57e7e4163e718920fc76f876294c442 Author: Ricardo Signes <[email protected]> Date: Sat Apr 18 15:33:41 2015 +0200 do not index the modules under lib/perl5db These are there for testing, and there is nothing to index under lib/perl5db anyway. This has, in the past, led to junk in 02packages. I think this is probably not the perfect way to do this, but it works and also does not seem like the worst way... ----------------------------------------------------------------------- Summary of changes: META.json | 1 + META.yml | 1 + Porting/makemeta | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/META.json b/META.json index 02d5261..cf349bb 100644 --- a/META.json +++ b/META.json @@ -53,6 +53,7 @@ "dist/threads-shared", "dist/Tie-File", "dist/XSLoader", + "lib/perl5db", "win32" ], "file" : [ diff --git a/META.yml b/META.yml index 52ae1fe..f22ef9f 100644 --- a/META.yml +++ b/META.yml @@ -51,6 +51,7 @@ no_index: - dist/threads-shared - dist/Tie-File - dist/XSLoader + - lib/perl5db - win32 file: - autodoc.pl diff --git a/Porting/makemeta b/Porting/makemeta index 6981048..cb6944e 100644 --- a/Porting/makemeta +++ b/Porting/makemeta @@ -70,7 +70,7 @@ my @CPAN = grep { $Modules{$_}{CPAN} } keys %Modules; my @files = ('autodoc.pl', 'lib/unicore/mktables', 'TestInit.pm', 'Porting/Maintainers.pm', 'Porting/perldelta_template.pod', map { get_module_files($_) } @CPAN); -my @dirs = ('cpan', 'win32', grep { -d $_ && $_ !~ /^cpan/ } map { get_module_pat($_) } @CPAN); +my @dirs = ('cpan', 'win32', 'lib/perl5db', grep { -d $_ && $_ !~ /^cpan/ } map { get_module_pat($_) } @CPAN); my %dirs; @dirs{@dirs} = (); -- Perl5 Master Repository
