[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][lintian/lintian][master] symbols-file-missing-build-depends-package-field: consider Build-Depends-Packages field as well



Title: GitLab

Maytham Alsudany pushed to branch master at lintian / lintian

Commits:

  • a5467cca
    by Maytham Alsudany at 2025-07-28T14:07:23+08:00
    symbols-file-missing-build-depends-package-field: consider Build-Depends-Packages field as well
    
    Closes: #1109992
    

1 changed file:

Changes:

  • lib/Lintian/Check/Debian/Shlibs.pm
    ... ... @@ -543,7 +543,9 @@ sub check_symbols_file {
    543 543
     
    
    544 544
             $self->pointed_hint('symbols-file-missing-build-depends-package-field',
    
    545 545
                 $symbols_file->pointer,$soname)
    
    546
    -          if none { $_ eq 'Build-Depends-Package' } @used_meta_labels;
    
    546
    +          if none {
    
    547
    +            $_ eq 'Build-Depends-Package' or $_ eq 'Build-Depends-Packages'
    
    548
    +          } @used_meta_labels;
    
    547 549
     
    
    548 550
             my @full_version_symbols
    
    549 551
               = @{$full_version_symbols_by_soname{$soname} // [] };
    


  • Reply to: