]> git.donarmstrong.com Git - debian/debian-policy.git/blob - tools/license-count
4be092b71e3b3c1a8ac66cd14e0f0e1c28b21692
[debian/debian-policy.git] / tools / license-count
1 #!/usr/bin/perl -w
2 #
3 # This script walks through a Lintian laboratory and counts license usage
4 # based on matching regexes against the contents of the copyright files.  It's
5 # intended to provide a rough estimate of the number of packages using a
6 # particular license when discussing whether to add a license to base-files.
7 #
8 # It expects one argument, which should be the root of the Lintian laboratory.
9
10 our @RULES = (
11     [qr,/usr/share/common-licenses/Apache-2.0,     => 'Apache 2.0'],
12     [qr,/usr/share/common-licenses/Artistic,       => 'Artistic'],
13     [qr,/usr/share/common-licenses/BSD,            => 'BSD (common-licenses)'],
14     [qr,/usr/share/common-licenses/GFDL-1.2,       => 'GFDL 1.2'],
15     [qr,/usr/share/common-licenses/GFDL-1.3,       => 'GFDL 1.3'],
16     [qr,/usr/share/common-licenses/GPL-2,          => 'GPL 2'],
17     [qr,/usr/share/common-licenses/GPL-3,          => 'GPL 3'],
18     [qr,/usr/share/common-licenses/LGPL-2,         => 'LGPL 2'],
19     [qr,/usr/share/common-licenses/LGPL-2.1,       => 'LGPL 2.1'],
20     [qr,/usr/share/common-licenses/LGPL-3,         => 'LGPL 3'],
21
22     [qr,/usr/share/common-licenses/GFDL(?!-),      => 'GFDL (symlink)'],
23     [qr,/usr/share/common-licenses/GPL(?!-),       => 'GPL (symlink)'],
24     [qr,/usr/share/common-licenses/LGPL(?!-),      => 'LGPL (symlink)'],
25
26     [qr,/usr/share/common-licenses/GFDL,           => 'GFDL (any)'],
27     [qr,/usr/share/common-licenses/GPL,            => 'GPL (any)'],
28     [qr,/usr/share/common-licenses/LGPL,           => 'LGPL (any)'],
29
30     [qr,(?m)^License:.*AGPL-3,                     => 'AGPL 3'],
31     [qr,(?m)^License:.*Artistic(?!-),              => 'Artistic'],
32     [qr,(?m)^License:.*Artistic-2,                 => 'Artistic 2.0'],
33     [qr,(?m)^License:.*CC-BY-3.0,                  => 'CC-BY 3.0'],
34     [qr,(?m)^License:.*CC-BY-SA-3.0,               => 'CC-BY-SA 3.0'],
35     [qr,(?m)^License:.*CDDL,                       => 'CDDL'],
36     [qr,(?m)^License:.*GPL-1,                      => 'GPL 1'],
37     [qr,(?m)^License:.*LPPL,                       => 'LaTeX PPL'],
38     [qr,(?m)^License:.*MPL-1\.1,                   => 'MPL 1.1'],
39     [qr,(?m)^License:.*Perl,                       => 'Artistic'],
40     [qr,(?m)^License:.*Perl,                       => 'GPL 1'],
41
42     [qr,GNU AFFERO GENERAL PUBLIC LICENSE\s+Version 3, => 'AGPL 3'],
43     [qr,(?i)The Artistic License 2\.0,             => 'Artistic 2.0'],
44     [qr,COMMON DEVELOPMENT AND DISTRIBUTION LICENSE \(CDDL\), => 'CDDL'],
45     [qr,CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL(?!-), => 'CeCILL'],
46     [qr,CeCILL FREE SOFTWARE LICENSE AGREEMENT,    => 'CeCILL'],
47     [qr,CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-B, => 'CeCILL-B'],
48     [qr,CeCILL-B FREE SOFTWARE LICENSE AGREEMENT,  => 'CeCILL-B'],
49     [qr,CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-C, => 'CeCILL-C'],
50     [qr,CeCILL-C FREE SOFTWARE LICENSE AGREEMENT,  => 'CeCILL-C'],
51     [qr,(?i)creative\s+commons\s+attribution\s+3\.0, => 'CC-BY 3.0'],
52     [qr,(?i)creative\s+commons\s+attribution[-\s]+share\s*alike\s+3\.0, => 'CC-BY-SA 3.0'],
53     [qr,GNU GENERAL PUBLIC LICENSE\s+Version 1,    => 'GPL 1'],
54     [qr,LPPL Version,                              => 'LaTeX PPL (any)'],
55     [qr,LPPL Version 1\.3a,                        => 'LaTeX PPL 1.3a'],
56     [qr,LPPL Version 1\.3c,                        => 'LaTeX PPL 1.3c'],
57     [qr,MOZILLA PUBLIC LICENSE\s+Version 1\.1,     => 'MPL 1.1'],
58     [qr,SIL OPEN FONT LICENSE Version 1\.1,        => 'SIL OFL 1.1'],
59     [qr,SIL OPEN FONT LICENSE Version 1\.0,        => 'SIL OFL 1.0'],
60 );
61
62 unless (@ARGV == 1) {
63     die "Usage: license-count <path-to-lintian-lab>\n";
64 }
65 my $lab = $ARGV[0];
66 opendir (LAB, "$lab/binary") or die "$0: cannot open $lab/binary: $!\n";
67 my ($package, %counts);
68 my $n = 0;
69 while (defined ($package = readdir LAB)) {
70     next if ($package =~ /^\./);
71     $n++;
72     print "Checked $n packages\n" if (($n % 100) == 0);
73     local $/;
74     open (COPYRIGHT, '<', "$lab/binary/$package/copyright") or next;
75     my $copyright = <COPYRIGHT>;
76     close COPYRIGHT;
77     my %seen;
78     study $copyright;
79     for my $rule (@RULES) {
80         if ($copyright =~ /$rule->[0]/ && !$seen{$rule->[1]}) {
81             $counts{$rule->[1]}++;
82             $seen{$rule->[1]} = 1;
83         }
84     }
85 }
86 closedir LAB;
87 my $length = 0;
88 for my $name (keys %counts) {
89     if (length ($name) > $length) {
90         $length = length ($name);
91     }
92 }
93 for my $name (sort keys %counts) {
94     printf "%-${length}s %5d\n", $name, $counts{$name};
95 }
96 print "\nTotal number of packages: $n\n";