File Coverage

blib/lib/Software/LicenseMoreUtils/LGPL_2.pm
Criterion Covered Total %
statement 10 14 71.4
branch n/a
condition n/a
subroutine 4 8 50.0
pod 5 5 100.0
total 19 27 70.3


line stmt bran cond sub pod time code
1             #
2             # This file is part of Software-LicenseMoreUtils
3             #
4             # This software is copyright (c) 2018, 2022 by Dominique Dumont.
5             #
6             # This is free software; you can redistribute it and/or modify it under
7             # the same terms as the Perl 5 programming language system itself.
8             #
9             package Software::LicenseMoreUtils::LGPL_2;
10             $Software::LicenseMoreUtils::LGPL_2::VERSION = '1.009';
11 2     2   10 use strict;
  2         5  
  2         49  
12 2     2   8 use warnings;
  2         5  
  2         44  
13              
14 2     2   9 use base 'Software::License';
  2         5  
  2         294  
15             # ABSTRACT: GNU Library General Public License, Version 2
16              
17 2     2 1 45741 sub name { return 'The GNU Library General Public License, Version 2, June 1991' }
18 0     0 1   sub url { return 'http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html' }
19 0     0 1   sub meta_name { return 'lgpl' }
20 0     0 1   sub meta2_name { return 'lgpl_2' }
21 0     0 1   sub spdx_expression { return 'LGPL-2.0-only' }
22              
23             1;
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             Software::LicenseMoreUtils::LGPL_2 - GNU Library General Public License, Version 2
32              
33             =head1 VERSION
34              
35             version 1.009
36              
37             =head1 NAME
38              
39             Software::LicenseMoreUtils::LGPL_2 - GNU Library General Public License, Version 2
40              
41             =head1 AUTHOR
42              
43             Dominique Dumont
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2018, 2022 by Dominique Dumont.
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut
53              
54             __DATA__