line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
9
|
|
|
9
|
|
12295
|
use strict; |
|
9
|
|
|
|
|
23
|
|
|
9
|
|
|
|
|
267
|
|
2
|
9
|
|
|
9
|
|
47
|
use warnings; |
|
9
|
|
|
|
|
24
|
|
|
9
|
|
|
|
|
788
|
|
3
|
|
|
|
|
|
|
package Software::License::None; |
4
|
|
|
|
|
|
|
$Software::License::None::VERSION = '0.104001'; |
5
|
9
|
|
|
9
|
|
49
|
use parent 'Software::License'; |
|
9
|
|
|
|
|
72
|
|
|
9
|
|
|
|
|
51
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: describes a "license" that gives no license for re-use |
7
|
|
|
|
|
|
|
|
8
|
21
|
|
|
21
|
1
|
49
|
sub name { q("No License" License) } |
9
|
0
|
|
|
0
|
1
|
0
|
sub url { undef } |
10
|
|
|
|
|
|
|
|
11
|
43
|
|
|
43
|
1
|
219
|
sub meta_name { 'restrictive' } |
12
|
42
|
|
|
42
|
1
|
102
|
sub meta2_name { 'restricted' } |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=pod |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=encoding UTF-8 |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Software::License::None - describes a "license" that gives no license for re-use |
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__ |