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