Louis-Philippe Véronneau pushed to branch master at lintian / lintian
Commits:
- 
a1bbb64f
by Yavor Doganov at 2024-11-02T19:06:35+00:00
 
1 changed file:
Changes:
| ... | ... | @@ -150,7 +150,12 @@ sub visit_installed_files { | 
| 150 | 150 |            # see Bug#1009679, not documentation, just an unlucky suffix
 | 
| 151 | 151 |            || $item->name =~ m{^var/lib/ocaml/lintian/.+[.]info$}
 | 
| 152 | 152 |            # see Bug#970275
 | 
| 153 | -          || $item->name =~ m{^usr/share/gtk-doc/html/.+[.]html?$};
 | 
|
| 153 | +          || $item->name =~ m{^usr/share/gtk-doc/html/.+[.]html?$}
 | 
|
| 154 | +          # GNUstep documentation, same rationale as Bug#970275
 | 
|
| 155 | +          || $item->name =~ m{^usr/share/GNUstep/Documentation/
 | 
|
| 156 | +                              .+[.](html|pdf)$}x
 | 
|
| 157 | +          # GNUstep Gorm files (not documentation)
 | 
|
| 158 | +          || ($item->dirname =~ m{[.]gorm} && $item->basename eq 'data.info');
 | 
|
| 154 | 159 |      }
 | 
| 155 | 160 | |
| 156 | 161 |      if ($item->name =~ m{^usr/share/doc/\S}) {
 |