1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
# fields/required -- lintian check script -*- perl -*-
#
# Copyright (C) 2020 Felix Lechner
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, you can find it on the World Wide
# Web at https://www.gnu.org/copyleft/gpl.html, or write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1301, USA.
package Lintian::Check::Fields::Required;
use v5.20;
use warnings;
use utf8;
use Const::Fast;
use List::SomeUtils qw(all);
use Path::Tiny;
use Moo;
use namespace::clean;
with 'Lintian::Check';
const my $AT => q{@};
# policy 5.2
my @DEBIAN_CONTROL_SOURCE = qw(Source Maintainer Standards-Version);
my @DEBIAN_CONTROL_INSTALLABLE = qw(Package Architecture Description);
# policy 5.3
my @INSTALLATION_CONTROL
= qw(Package Version Architecture Maintainer Description);
# policy 5.4
my @DSC = qw(Format Source Version Maintainer Standards-Version
Checksums-Sha1 Checksums-Sha256 Files);
# policy 5.5
# Binary and Description were removed, see Bug#963524
my @CHANGES = qw(Format Date Source Architecture Version Distribution
Maintainer Changes Checksums-Sha1 Checksums-Sha256 Files);
sub source {
my ($self) = @_;
my $debian_control = $self->processable->debian_control;
# policy 5.6.11
if (all { $debian_control->installable_package_type($_) eq 'udeb' }
$debian_control->installables) {
@DEBIAN_CONTROL_SOURCE
= grep { $_ ne 'Standards-Version' } @DEBIAN_CONTROL_SOURCE;
@DSC = grep { $_ ne 'Standards-Version' } @DSC;
}
my $fields = $self->processable->fields;
my @missing_dsc = grep { !$fields->declares($_) } @DSC;
my $dscfile = path($self->processable->path)->basename;
$self->hint('required-field', $dscfile, $_) for @missing_dsc;
my $control_item = $debian_control->item;
# look at d/control source paragraph
my $source_fields = $debian_control->source_fields;
my @missing_control_source
= grep { !$source_fields->declares($_) }@DEBIAN_CONTROL_SOURCE;
my $source_position = $source_fields->position;
my $source_pointer = $control_item->pointer($source_position);
$self->pointed_hint('required-field', $source_pointer,
'(in section for source)', $_)
for @missing_control_source;
# look at d/control installable paragraphs
for my $installable ($debian_control->installables) {
my $installable_fields
= $debian_control->installable_fields($installable);
my @missing_control_installable
= grep {!$installable_fields->declares($_)}
@DEBIAN_CONTROL_INSTALLABLE;
my $installable_position = $installable_fields->position;
my $installable_pointer= $control_item->pointer($installable_position);
$self->pointed_hint('required-field', $installable_pointer,
"(in section for $installable)", $_)
for @missing_control_installable;
}
return;
}
sub installable {
my ($self) = @_;
my $fields = $self->processable->fields;
my @missing_installation_control
= grep { !$fields->declares($_) } @INSTALLATION_CONTROL;
my $debfile = path($self->processable->path)->basename;
$self->hint('required-field', $debfile, $_)
for @missing_installation_control;
return;
}
sub changes {
my ($self) = @_;
my $fields = $self->processable->fields;
my @missing_changes = grep { !$fields->declares($_) } @CHANGES;
my $changesfile = path($self->processable->path)->basename;
$self->hint('required-field', $changesfile, $_) for @missing_changes;
return;
}
1;
# Local Variables:
# indent-tabs-mode: nil
# cperl-indent-level: 4
# End:
# vim: syntax=perl sw=4 sts=4 sr et
|