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

[Git][lintian/lintian][master] 2 commits: add support for "/usr/lib/jvm/java-$VERSION-openjdk-$ARCH-jvmci" as an



Title: GitLab

Louis-Philippe Véronneau pushed to branch master at lintian / lintian

Commits:

  • 0720dbf9
    by Louis-Philippe Véronneau at 2025-06-27T20:35:37+00:00
    add support for "/usr/lib/jvm/java-$VERSION-openjdk-$ARCH-jvmci" as an
    arch-specific directory
    
    Closes: #1101094
    
  • 2024f376
    by Louis-Philippe Véronneau at 2025-06-27T20:35:37+00:00
    Use non-matching group for regex to fix perlcritic
    

1 changed file:

Changes:

  • lib/Lintian/Check/Binaries/Location.pm
    ... ... @@ -114,7 +114,7 @@ sub visit_installed_files {
    114 114
           && $item->name !~ m{\b$gnu_triplet_pattern(?:\b|_)}
    
    115 115
           && length $ruby_triplet_pattern
    
    116 116
           && $item->name !~ m{/$ruby_triplet_pattern/}
    
    117
    -      && $item->name !~ m{/java-\d+-openjdk-\Q$architecture\E/}
    
    117
    +      && $item->name !~ m{/java-\d+-openjdk-\Q$architecture\E(?:-jvmci)?/}
    
    118 118
           && $item->name !~ m{/[.]build-id/};
    
    119 119
     
    
    120 120
         return
    


  • Reply to: