Lines Matching refs:license
628 … my $license = $mcpan->source( author => $author, release => $release, path => $fname );
629 $license_files{$name}->{$fname} = sha256_hex( $license );
703 my $license = shift;
704 $license =~ s|apache_1_1|Apache-1.1|;
705 $license =~ s|apache_2_0|Apache-2.0|;
706 $license =~ s|artistic_2|Artistic-2.0|;
707 $license =~ s|artistic|Artistic-1.0|;
708 $license =~ s|lgpl_2_1|LGPL-2.1|;
709 $license =~ s|lgpl_3_0|LGPL-3.0|;
710 $license =~ s|gpl_2|GPL-2.0|;
711 $license =~ s|gpl_3|GPL-3.0|;
712 $license =~ s|mit|MIT|;
713 $license =~ s|mozilla_1_1|Mozilla-1.1|;
714 $license =~ s|openssl|OpenSSL|;
715 $license =~ s|perl_5|Artistic or GPL-1.0+|;
716 return $license;
770 my $license = brlicense( ref $dist->{license} eq 'ARRAY'
771 ? join q{ or }, @{$dist->{license}}
772 : $dist->{license} );
774 if ($license_files && (!$license || $license eq q{unknown})) {
776 $license = q{???};
791 say {$fh} qq{${brname}_LICENSE = ${license}} if $license;
812 foreach my $license (sort keys %license_files) {
813 my $digest = $license_files{$license};
814 say {$fh} qq{sha256 ${digest} ${license}};