# 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