Oh god, i now have a cpanfile for EVERYTHING.
This commit is contained in:
parent
4b9481fdaa
commit
16044d35f7
3 changed files with 35850 additions and 1 deletions
35837
everything_cpanfile
Normal file
35837
everything_cpanfile
Normal file
File diff suppressed because it is too large
Load diff
12
gencpanfile.pl
Executable file
12
gencpanfile.pl
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use FindBin;
|
||||
use lib $FindBin::Bin.'/lib';
|
||||
|
||||
use Dist;
|
||||
|
||||
for my $dist (sort keys %Dist::dist_to_mod) {
|
||||
printf "requires '%s' => 0\n", $Dist::dist_to_mod{$dist}[0];
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
package Dists;
|
||||
package Dist;
|
||||
use strict;
|
||||
use warnings;
|
||||
use Data::Dumper;
|
||||
|
|
Loading…
Add table
Reference in a new issue