| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
11
|
|
|
11
|
|
94863
|
use strict; |
|
|
11
|
|
|
|
|
22
|
|
|
|
11
|
|
|
|
|
426
|
|
|
2
|
11
|
|
|
11
|
|
78
|
use warnings; |
|
|
11
|
|
|
|
|
21
|
|
|
|
11
|
|
|
|
|
828
|
|
|
3
|
|
|
|
|
|
|
package Software::License::BSD 0.104007; |
|
4
|
|
|
|
|
|
|
|
|
5
|
11
|
|
|
11
|
|
580
|
use parent 'Software::License'; |
|
|
11
|
|
|
|
|
371
|
|
|
|
11
|
|
|
|
|
62
|
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: The (three-clause) BSD License |
|
7
|
|
|
|
|
|
|
|
|
8
|
23
|
|
|
23
|
1
|
157
|
sub name { 'The (three-clause) BSD License' } |
|
9
|
1
|
|
|
1
|
1
|
313937
|
sub url { 'http://opensource.org/licenses/BSD-3-Clause' } |
|
10
|
43
|
|
|
43
|
1
|
140
|
sub meta_name { 'bsd' } |
|
11
|
42
|
|
|
42
|
1
|
82
|
sub meta2_name { 'bsd' } |
|
12
|
43
|
|
|
43
|
1
|
108
|
sub spdx_expression { 'BSD-3-Clause' } |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=pod |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=encoding UTF-8 |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Software::License::BSD - The (three-clause) BSD License |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 VERSION |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
version 0.104007 |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 PERL VERSION |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
This module is part of CPAN toolchain, or is treated as such. As such, it |
|
31
|
|
|
|
|
|
|
follows the agreement of the Perl Toolchain Gang to require no newer version |
|
32
|
|
|
|
|
|
|
of perl than one released in the last ten years. This version may change by |
|
33
|
|
|
|
|
|
|
agreement of the Toolchain Gang, but for now is governed by the L
|
|
34
|
|
|
|
|
|
|
Consensus|https://github.com/Perl-Toolchain-Gang/toolchain-site/blob/master/lancaster-consensus.md> |
|
35
|
|
|
|
|
|
|
of 2013 and the Lyon Amendment of 2023 (described at the linked-to document). |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
|
38
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
|
39
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to |
|
40
|
|
|
|
|
|
|
lower the minimum required perl. |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 AUTHOR |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Ricardo Signes |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
This software is copyright (c) 2025 by Ricardo Signes. |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
51
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=cut |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
__DATA__ |