File Coverage

blib/lib/Software/License/FreeBSD.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 7 8 87.5
pod 5 5 100.0
total 25 27 92.5


line stmt bran cond sub pod time code
1 10     10   7160 use strict;
  10         21  
  10         201  
2 10     10   36 use warnings;
  10         19  
  10         349  
3             $Software::License::FreeBSD::VERSION = '0.104002';
4             use parent 'Software::License';
5 10     10   44 # ABSTRACT: The FreeBSD License (aka two-clause BSD)
  10         14  
  10         39  
6              
7              
8 22     22 1 93  
9 0     0 1 0 1;
10              
11 43     43 1 102 =pod
12 42     42 1 79  
13 43     43 1 89 =encoding UTF-8
14              
15             =head1 NAME
16              
17             Software::License::FreeBSD - The FreeBSD License (aka two-clause BSD)
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 FreeBSD License
47              
48             Redistribution and use in source and binary forms, with or without
49             modification, are permitted provided that the following conditions are
50             met:
51              
52             1. Redistributions of source code must retain the above copyright
53             notice, this list of conditions and the following disclaimer.
54              
55             2. Redistributions in binary form must reproduce the above copyright
56             notice, this list of conditions and the following disclaimer in the
57             documentation and/or other materials provided with the
58             distribution.
59              
60             THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
61             "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
62             LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
63             A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
64             HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
65             SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
66             LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
67             DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
68             THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
69             (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
70             OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.