File Coverage

File:Dpkg/Control/Hash.pm
Coverage:100.0%

linestmtbrancondsubpodtimecode
1# Copyright © 2007-2009 Raphaël Hertzog <hertzog@debian.org>
2#
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program.  If not, see <https://www.gnu.org/licenses/>.
15
16=encoding utf8
17
18 - 27
=head1 NAME

Dpkg::Control::Hash - parse and manipulate a stanza of deb822 fields

=head1 DESCRIPTION

This module is just like L<Dpkg::Control::HashCore>, with vendor-specific
field knowledge.

=cut
28
29package Dpkg::Control::Hash 1.00;
30
31
42
42
42
87
28
583
use strict;
32
42
42
42
98
29
826
use warnings;
33
34
42
42
42
90
42
1101
use Dpkg::Gettext;
35
42
42
42
129
37
1367
use Dpkg::ErrorHandling;
36
42
42
42
5342
47
2588
use Dpkg::Control::Fields; # Force execution of vendor hook.
37
38
42
42
42
135
31
106
use parent qw(Dpkg::Control::HashCore);
39
40 - 46
=head1 CHANGES

=head2 Version 1.00 (dpkg 1.15.6)

Mark the module as public.

=cut
47
481;