line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
11
|
|
|
11
|
|
1241110
|
use v5.20; |
|
11
|
|
|
|
|
65
|
|
2
|
11
|
|
|
11
|
|
87
|
use utf8; |
|
11
|
|
|
|
|
32
|
|
|
11
|
|
|
|
|
121
|
|
3
|
11
|
|
|
11
|
|
311
|
use warnings; |
|
11
|
|
|
|
|
43
|
|
|
11
|
|
|
|
|
361
|
|
4
|
11
|
|
|
11
|
|
76
|
use feature qw(signatures); |
|
11
|
|
|
|
|
36
|
|
|
11
|
|
|
|
|
1126
|
|
5
|
11
|
|
|
11
|
|
95
|
no warnings qw(experimental::signatures); |
|
11
|
|
|
|
|
46
|
|
|
11
|
|
|
|
|
473
|
|
6
|
|
|
|
|
|
|
|
7
|
11
|
|
|
11
|
|
543
|
use Feature::Compat::Class 0.04; |
|
11
|
|
|
|
|
488
|
|
|
11
|
|
|
|
|
80
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
String::License::Naming - names of licenses and license naming schemes |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 VERSION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Version v0.0.6 |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 SYNOPSIS |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
use String::License::Naming::Custom; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
my $obj = String::License::Naming::Custom->new( schemes => [qw(spdx internal)] ); |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
my $schemes = [ $obj->list_schemes ]; # => is_deeply [ 'spdx', 'internal' ] |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
my $license = [ grep { /^(Expat|Perl)$/ } $obj->list_licenses ]; # => is_deeply ['Perl'] |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
# use and prefer Debian-specific identifiers |
28
|
|
|
|
|
|
|
$schemes = [ $obj->add_scheme('debian') ]; # => is_deeply [ 'debian', 'spdx', 'internal' ] |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
$license = [ grep { /^(Expat|Perl)$/ } $obj->list_licenses ]; # => is_deeply [ 'Expat', 'Perl' ] |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 DESCRIPTION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
L enumerates supported licenses |
35
|
|
|
|
|
|
|
matching an ordered set of naming schemes, |
36
|
|
|
|
|
|
|
or enumerates the names of supported license naming schemes. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Some licenses are known by different names. |
39
|
|
|
|
|
|
|
E.g. the license "MIT" according to SPDX |
40
|
|
|
|
|
|
|
is named "Expat" in Debian. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Some licenses are not always represented. |
43
|
|
|
|
|
|
|
E.g. "Perl" is a (discouraged) license in Debian |
44
|
|
|
|
|
|
|
while it is a relationship of several licenses with SPDX |
45
|
|
|
|
|
|
|
(and that expression is recommended in Debian as well). |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
By default, |
48
|
|
|
|
|
|
|
licenses are matched using naming schemes C<[ 'spdx', 'internal' ]>, |
49
|
|
|
|
|
|
|
which lists all supported licenses, |
50
|
|
|
|
|
|
|
preferrably by their SPDX name |
51
|
|
|
|
|
|
|
or as fallback by an internal name. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=cut |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
package String::License::Naming::Custom v0.0.6; |
56
|
|
|
|
|
|
|
|
57
|
11
|
|
|
11
|
|
15349
|
use Carp qw(croak); |
|
11
|
|
|
|
|
136
|
|
|
11
|
|
|
|
|
581
|
|
58
|
11
|
|
|
11
|
|
74
|
use Log::Any (); |
|
11
|
|
|
|
|
22
|
|
|
11
|
|
|
|
|
260
|
|
59
|
11
|
|
|
11
|
|
589
|
use List::SomeUtils qw(uniq); |
|
11
|
|
|
|
|
14202
|
|
|
11
|
|
|
|
|
617
|
|
60
|
11
|
|
|
11
|
|
73
|
use Regexp::Pattern::License 3.4.0; |
|
11
|
|
|
|
|
140
|
|
|
11
|
|
|
|
|
275
|
|
61
|
|
|
|
|
|
|
|
62
|
11
|
|
|
11
|
|
5117
|
use namespace::clean; |
|
11
|
|
|
|
|
109702
|
|
|
11
|
|
|
|
|
87
|
|
63
|
|
|
|
|
|
|
|
64
|
11
|
|
|
11
|
|
7843
|
class String::License::Naming::Custom :isa(String::License::Naming); |
|
11
|
|
|
|
|
29
|
|
|
11
|
|
|
|
|
13432
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
field $log; |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 CONSTRUCTOR |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=over |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=item new |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
my $names = String::License::Naming->new; |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
my $spdx_names = String::License::Naming->new( schemes => ['spdx'] ); |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
Constructs and returns a String::License::Naming object. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
Takes an optional array as named argument B. |
81
|
|
|
|
|
|
|
both ordering by which name licenses should be presented, |
82
|
|
|
|
|
|
|
and limiting which licenses to cover. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
When omitted, |
85
|
|
|
|
|
|
|
the default schemes array C<[ 'spdx', 'internal' ]> is used, |
86
|
|
|
|
|
|
|
which includes all supported licenses, |
87
|
|
|
|
|
|
|
and they are presented by their SPDX name when defined |
88
|
|
|
|
|
|
|
or otherwise by a semi-stable internal name. |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
When passing an empty array reference, |
91
|
|
|
|
|
|
|
all supported licenses are included, |
92
|
|
|
|
|
|
|
presented by a semi-stable internal potentially multi-word description. |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
=back |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=cut |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
field $schemes :param = undef; |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
# TODO: maybe support seeding explicit keys |
101
|
|
|
|
|
|
|
field $keys; |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
ADJUST { |
104
|
|
|
|
|
|
|
$log = Log::Any->get_logger; |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
if ( defined $schemes ) { |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
croak $log->fatal('parameter "schemes" must be an array reference') |
109
|
|
|
|
|
|
|
unless ref $schemes eq 'ARRAY'; |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
# TODO: die unless each arrayref entry is a string and supported |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
my @uniq_schemes = uniq @$schemes; |
114
|
|
|
|
|
|
|
if ( join( ' ', @$schemes ) ne join( ' ', @uniq_schemes ) ) { |
115
|
|
|
|
|
|
|
$log->warn("duplicate scheme(s) omitted"); |
116
|
|
|
|
|
|
|
@$schemes = \@uniq_schemes; |
117
|
|
|
|
|
|
|
} |
118
|
|
|
|
|
|
|
} |
119
|
|
|
|
|
|
|
else { |
120
|
|
|
|
|
|
|
$schemes = []; |
121
|
|
|
|
|
|
|
} |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
$keys = [ |
124
|
|
|
|
|
|
|
String::License::Naming::resolve_shortnames( $keys, $schemes, 1 ) ]; |
125
|
|
|
|
|
|
|
} |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
=head1 FUNCTIONS |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
=over |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
=item add_scheme |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
Takes a string representing a license naming scheme to use, |
134
|
|
|
|
|
|
|
favored over existing schemes in use. |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
Returns array of schemes in use after addition. |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
=cut |
139
|
|
|
|
|
|
|
|
140
|
3
|
|
|
|
|
9
|
method add_scheme ($new_scheme) |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
6
|
|
141
|
3
|
|
|
3
|
1
|
206761
|
{ |
142
|
3
|
50
|
|
|
|
11
|
if ( grep { $_ eq $new_scheme } @$schemes ) { |
|
1
|
|
|
|
|
9
|
|
143
|
0
|
|
|
|
|
0
|
$log->warn("already included scheme $new_scheme not added"); |
144
|
0
|
|
|
|
|
0
|
return @$schemes; |
145
|
|
|
|
|
|
|
} |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
# TODO: validate new entry is string and supported, or die |
148
|
3
|
|
|
|
|
11
|
unshift @$schemes, $new_scheme; |
149
|
|
|
|
|
|
|
|
150
|
3
|
|
|
|
|
25
|
return @$schemes; |
151
|
|
|
|
|
|
|
} |
152
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
=item list_schemes |
154
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
Returns a list of license naming schemes in use. |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
=cut |
158
|
|
|
|
|
|
|
|
159
|
7234
|
|
|
|
|
9834
|
method list_schemes () |
|
7234
|
|
|
|
|
9904
|
|
160
|
7234
|
|
|
7234
|
1
|
16156
|
{ |
161
|
7234
|
|
|
|
|
18409
|
return @$schemes; |
162
|
|
|
|
|
|
|
} |
163
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
=item list_available_schemes |
165
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
Returns a list of all license naming schemes available. |
167
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
=cut |
169
|
|
|
|
|
|
|
|
170
|
0
|
|
|
|
|
0
|
method list_available_schemes () |
|
0
|
|
|
|
|
0
|
|
171
|
0
|
|
|
0
|
1
|
0
|
{ |
172
|
0
|
|
|
|
|
0
|
my ( $_prop, $_any, @result ); |
173
|
|
|
|
|
|
|
|
174
|
0
|
|
|
|
|
0
|
$_prop = '(?:[a-z][a-z0-9_]*)'; |
175
|
0
|
|
|
|
|
0
|
$_any = '[a-z0-9_.()]'; |
176
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
@result = uniq sort |
178
|
0
|
|
|
|
|
0
|
map {/^(?:name|caption)\.alt\.org\.($_prop)$_any*/} |
179
|
0
|
|
|
|
|
0
|
map { keys %{ $Regexp::Pattern::License::RE{$_} } } |
|
0
|
|
|
|
|
0
|
|
180
|
0
|
|
|
|
|
0
|
grep {/^[a-z]/} keys %Regexp::Pattern::License::RE; |
|
0
|
|
|
|
|
0
|
|
181
|
|
|
|
|
|
|
|
182
|
0
|
|
|
|
|
0
|
return @result; |
183
|
|
|
|
|
|
|
} |
184
|
|
|
|
|
|
|
|
185
|
|
|
|
|
|
|
=item list_licenses |
186
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
Returns a list of licensing patterns covered by this object instance, |
188
|
|
|
|
|
|
|
each labeled by shortname according to current set of schemes. |
189
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
=cut |
191
|
|
|
|
|
|
|
|
192
|
4
|
|
|
|
|
8
|
method list_licenses () |
|
4
|
|
|
|
|
9
|
|
193
|
4
|
|
|
4
|
1
|
17
|
{ |
194
|
4
|
|
|
|
|
16
|
return String::License::Naming::resolve_shortnames( $keys, $schemes ); |
195
|
|
|
|
|
|
|
} |
196
|
|
|
|
|
|
|
|
197
|
|
|
|
|
|
|
=back |
198
|
|
|
|
|
|
|
|
199
|
|
|
|
|
|
|
=encoding UTF-8 |
200
|
|
|
|
|
|
|
|
201
|
|
|
|
|
|
|
=head1 AUTHOR |
202
|
|
|
|
|
|
|
|
203
|
|
|
|
|
|
|
Jonas Smedegaard C<< >> |
204
|
|
|
|
|
|
|
|
205
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
206
|
|
|
|
|
|
|
|
207
|
|
|
|
|
|
|
Copyright © 2023 Jonas Smedegaard |
208
|
|
|
|
|
|
|
|
209
|
|
|
|
|
|
|
This program is free software: |
210
|
|
|
|
|
|
|
you can redistribute it and/or modify it |
211
|
|
|
|
|
|
|
under the terms of the GNU Affero General Public License |
212
|
|
|
|
|
|
|
as published by the Free Software Foundation, |
213
|
|
|
|
|
|
|
either version 3, or (at your option) any later version. |
214
|
|
|
|
|
|
|
|
215
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, |
216
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; |
217
|
|
|
|
|
|
|
without even the implied warranty |
218
|
|
|
|
|
|
|
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
219
|
|
|
|
|
|
|
See the GNU Affero General Public License for more details. |
220
|
|
|
|
|
|
|
|
221
|
|
|
|
|
|
|
You should have received a copy |
222
|
|
|
|
|
|
|
of the GNU Affero General Public License along with this program. |
223
|
|
|
|
|
|
|
If not, see . |
224
|
|
|
|
|
|
|
|
225
|
|
|
|
|
|
|
=cut |
226
|
|
|
|
|
|
|
|
227
|
|
|
|
|
|
|
1; |