File Coverage

blib/lib/Dpkg/Control/Types.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             # This program is free software; you can redistribute it and/or modify
2             # it under the terms of the GNU General Public License as published by
3             # the Free Software Foundation; either version 2 of the License, or
4             # (at your option) any later version.
5             #
6             # This program is distributed in the hope that it will be useful,
7             # but WITHOUT ANY WARRANTY; without even the implied warranty of
8             # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9             # GNU General Public License for more details.
10             #
11             # You should have received a copy of the GNU General Public License
12             # along with this program. If not, see .
13              
14             package Dpkg::Control::Types;
15              
16 14     14   1815 use strict;
  14         29  
  14         414  
17 14     14   69 use warnings;
  14         32  
  14         1041  
18              
19             our $VERSION = '0.01';
20             our @EXPORT = qw(
21             CTRL_UNKNOWN
22             CTRL_INFO_SRC
23             CTRL_INFO_PKG
24             CTRL_REPO_RELEASE
25             CTRL_INDEX_SRC
26             CTRL_INDEX_PKG
27             CTRL_PKG_SRC
28             CTRL_PKG_DEB
29             CTRL_FILE_BUILDINFO
30             CTRL_FILE_CHANGES
31             CTRL_FILE_VENDOR
32             CTRL_FILE_STATUS
33             CTRL_CHANGELOG
34             CTRL_COPYRIGHT_HEADER
35             CTRL_COPYRIGHT_FILES
36             CTRL_COPYRIGHT_LICENSE
37             CTRL_TESTS
38             );
39              
40 14     14   106 use Exporter qw(import);
  14         26  
  14         1026  
41              
42             =encoding utf8
43              
44             =head1 NAME
45              
46             Dpkg::Control::Types - export CTRL_* constants
47              
48             =head1 DESCRIPTION
49              
50             You should not use this module directly. Instead you more likely
51             want to use Dpkg::Control which also re-exports the same constants.
52              
53             This module has been introduced solely to avoid a dependency loop
54             between Dpkg::Control and Dpkg::Control::Fields.
55              
56             =cut
57              
58             use constant {
59 14         3205 CTRL_UNKNOWN => 0,
60             # First control block in debian/control.
61             CTRL_INFO_SRC => 1,
62             # Subsequent control blocks in debian/control.
63             CTRL_INFO_PKG => 2,
64             # Entry in repository's Sources files.
65             CTRL_INDEX_SRC => 4,
66             # Entry in repository's Packages files.
67             CTRL_INDEX_PKG => 8,
68             # .dsc file of source package.
69             CTRL_PKG_SRC => 16,
70             # DEBIAN/control in binary packages.
71             CTRL_PKG_DEB => 32,
72             # .changes file.
73             CTRL_FILE_CHANGES => 64,
74             # File in $Dpkg::CONFDIR/origins.
75             CTRL_FILE_VENDOR => 128,
76             # $Dpkg::ADMINDIR/status.
77             CTRL_FILE_STATUS => 256,
78             # Output of dpkg-parsechangelog.
79             CTRL_CHANGELOG => 512,
80             # Repository's (In)Release file.
81             CTRL_REPO_RELEASE => 1024,
82             # Header control block in debian/copyright.
83             CTRL_COPYRIGHT_HEADER => 2048,
84             # Files control block in debian/copyright.
85             CTRL_COPYRIGHT_FILES => 4096,
86             # License control block in debian/copyright.
87             CTRL_COPYRIGHT_LICENSE => 8192,
88             # Package test suite control file in debian/tests/control.
89             CTRL_TESTS => 16384,
90             # .buildinfo file
91             CTRL_FILE_BUILDINFO => 32768,
92 14     14   92 };
  14         24  
93              
94             =head1 CHANGES
95              
96             =head2 Version 0.xx
97              
98             This is a private module.
99              
100             =cut
101              
102             1;