| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
9
|
|
|
9
|
|
3128
|
use strict; |
|
|
9
|
|
|
|
|
18
|
|
|
|
9
|
|
|
|
|
180
|
|
|
2
|
9
|
|
|
9
|
|
31
|
use warnings; |
|
|
9
|
|
|
|
|
16
|
|
|
|
9
|
|
|
|
|
288
|
|
|
3
|
|
|
|
|
|
|
$Software::License::PostgreSQL::VERSION = '0.104002'; |
|
4
|
|
|
|
|
|
|
use parent 'Software::License'; |
|
5
|
9
|
|
|
9
|
|
50
|
# ABSTRACT: The PostgreSQL License |
|
|
9
|
|
|
|
|
14
|
|
|
|
9
|
|
|
|
|
37
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
21
|
|
|
21
|
1
|
32
|
|
|
9
|
0
|
|
|
0
|
1
|
0
|
1; |
|
10
|
|
|
|
|
|
|
|
|
11
|
43
|
|
|
43
|
1
|
107
|
=pod |
|
12
|
42
|
|
|
42
|
1
|
65
|
|
|
13
|
43
|
|
|
43
|
1
|
89
|
=encoding UTF-8 |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Software::License::PostgreSQL - The PostgreSQL License |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 VERSION |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
version 0.104002 |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 PERL VERSION |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This module is part of CPAN toolchain, or is treated as such. As such, it |
|
26
|
|
|
|
|
|
|
follows the agreement of the Perl Toolchain Gang to require no newer version of |
|
27
|
|
|
|
|
|
|
perl than v5.8.1. This version may change by agreement of the Toolchain Gang, |
|
28
|
|
|
|
|
|
|
but for now is governed by the L<Lancaster |
|
29
|
|
|
|
|
|
|
Consensus|https://github.com/Perl-Toolchain-Gang/toolchain-site/blob/master/lancaster-consensus.md> |
|
30
|
|
|
|
|
|
|
of 2013. |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 AUTHOR |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Ricardo Signes <rjbs@semiotic.systems> |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
This software is copyright (c) 2022 by Ricardo Signes. |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
41
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
__LICENSE__ |
|
46
|
|
|
|
|
|
|
The PostgreSQL License |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Copyright (c) {{$self->year}}, {{$self->holder}} |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its |
|
51
|
|
|
|
|
|
|
documentation for any purpose, without fee, and without a written agreement is |
|
52
|
|
|
|
|
|
|
hereby granted, provided that the above copyright notice and this paragraph |
|
53
|
|
|
|
|
|
|
and the following two paragraphs appear in all copies. |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
IN NO EVENT SHALL {{$self->holder}} BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, |
|
56
|
|
|
|
|
|
|
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING |
|
57
|
|
|
|
|
|
|
OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF |
|
58
|
|
|
|
|
|
|
{{$self->holder}} HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
{{$self->holder}} SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT |
|
61
|
|
|
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
|
62
|
|
|
|
|
|
|
PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, |
|
63
|
|
|
|
|
|
|
AND {{$self->holder}} HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, |
|
64
|
|
|
|
|
|
|
UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |