line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
10
|
|
|
10
|
|
14030
|
use strict; |
|
10
|
|
|
|
|
35
|
|
|
10
|
|
|
|
|
309
|
|
2
|
10
|
|
|
10
|
|
52
|
use warnings; |
|
10
|
|
|
|
|
33
|
|
|
10
|
|
|
|
|
584
|
|
3
|
|
|
|
|
|
|
package Software::License::GPL_3; |
4
|
|
|
|
|
|
|
$Software::License::GPL_3::VERSION = '0.104001'; |
5
|
10
|
|
|
10
|
|
62
|
use parent 'Software::License'; |
|
10
|
|
|
|
|
20
|
|
|
10
|
|
|
|
|
75
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: GNU General Public License, Version 3 |
7
|
|
|
|
|
|
|
|
8
|
23
|
|
|
23
|
1
|
209
|
sub name { 'The GNU General Public License, Version 3, June 2007' } |
9
|
0
|
|
|
0
|
1
|
0
|
sub url { 'http://www.gnu.org/licenses/gpl-3.0.txt' } |
10
|
43
|
|
|
43
|
1
|
151
|
sub meta_name { 'gpl' } |
11
|
42
|
|
|
42
|
1
|
103
|
sub meta2_name { 'gpl_3' } |
12
|
43
|
|
|
43
|
1
|
126
|
sub spdx_expression { 'GPL-3.0-only' } |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=pod |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=encoding UTF-8 |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Software::License::GPL_3 - GNU General Public License, Version 3 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 VERSION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
version 0.104001 |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 AUTHOR |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Ricardo Signes |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Ricardo Signes. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
37
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
__DATA__ |