Oh god, i now have a cpanfile for EVERYTHING.

This commit is contained in:
Ryan Voots 2017-03-30 01:51:14 -04:00
parent 4b9481fdaa
commit 16044d35f7
3 changed files with 35850 additions and 1 deletions

35837
everything_cpanfile Normal file

File diff suppressed because it is too large Load diff

12
gencpanfile.pl Executable file
View 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];
}

View file

@ -1,4 +1,4 @@
package Dists;
package Dist;
use strict;
use warnings;
use Data::Dumper;