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

[Git][lintian/lintian][bookworm] 4 commits: Add duke to list of known distributions



Title: GitLab

Maytham Alsudany pushed to branch bookworm at lintian / lintian

Commits:

  • 701dc666
    by Maytham Alsudany at 2025-07-18T20:00:46+08:00
    Add duke to list of known distributions
    
    As per https://lists.debian.org/debian-devel-announce/2025/01/msg00004.html
    
  • 1f9bd0ff
    by Emilio Pozuelo Monfort at 2025-07-18T20:01:12+08:00
    Don't emit source-nmu-has-incorrect-version-number for stable updates
    
    Closes: #1022759
    
  • f97b4a6f
    by Adrian Bunk at 2025-07-18T20:01:21+08:00
    source-nmu-has-incorrect-version-number: Fix false positive for +deb*u* versions
    
  • c5f02813
    by Maytham Alsudany at 2025-07-18T20:04:40+08:00
    Upload changelog
    

3 changed files:

Changes:

  • data/changes-file/known-dists
    ... ... @@ -12,6 +12,9 @@ stretch
    12 12
     buster
    
    13 13
     bullseye
    
    14 14
     bookworm
    
    15
    +trixie
    
    16
    +forky
    
    17
    +duke
    
    15 18
     sid
    
    16 19
     
    
    17 20
     # Aliases
    

  • debian/changelog
    1 1
     lintian (2.116.3+deb12u1) UNRELEASED; urgency=medium
    
    2 2
     
    
    3 3
       * Team upload.
    
    4
    -  * data/changes-file/known-dists: Add bookworm (Closes: #1051140)
    
    5 4
     
    
    6
    - -- Maytham Alsudany <maytha8thedev@gmail.com>  Mon, 17 Jun 2024 19:43:58 +0800
    
    5
    +  [ Maytham Alsudany ]
    
    6
    +  * data/changes-file/known-dists: Add bookworm, trixie, forky, duke (Closes: #1051140)
    
    7
    +
    
    8
    +  [ Emilio Pozuelo Monfort ]
    
    9
    +  * Don't emit source-nmu-has-incorrect-version-number for stable updates
    
    10
    +    (Closes: #1022759)
    
    11
    +
    
    12
    +  [ Adrian Bunk ]
    
    13
    +  * source-nmu-has-incorrect-version-number: Fix false positive for +deb*u* versions
    
    14
    +
    
    15
    + -- Maytham Alsudany <maytham@debian.org>  Fri, 18 Jul 2025 20:03:34 +0800
    
    7 16
     
    
    8 17
     lintian (2.116.3) unstable; urgency=medium
    
    9 18
     
    

  • lib/Lintian/Check/Nmu.pm
    ... ... @@ -102,6 +102,7 @@ sub source {
    102 102
         my $version_nmuness = 0;
    
    103 103
         my $version_local = 0;
    
    104 104
         my $upload_is_backport = $version =~ m/~bpo(\d+)\+(\d+)$/;
    
    105
    +    my $upload_is_stable_update = $version =~ m/[~|\+]deb(\d+)u(\d+)$/;
    
    105 106
     
    
    106 107
         if ($version =~ /-[^.-]+(\.[^.-]+)?(\.[^.-]+)?$/) {
    
    107 108
             $version_nmuness = 1 if defined $1;
    
    ... ... @@ -158,6 +159,7 @@ sub source {
    158 159
                     $pointer, $version)
    
    159 160
                   if $upload_is_nmu
    
    160 161
                   && $version_nmuness != 1
    
    162
    +              && !$upload_is_stable_update
    
    161 163
                   && !$upload_is_backport;
    
    162 164
             }
    
    163 165
     
    


  • Reply to: