rpmlint/rpmlint-0.71-paths.patch
Ville Skyttä 2b2f6c9791 - Take file based dependencies into account in dangling symlink checks
(completes the fix for #165839).
- Skip some checks for binaries not understood by objdump (#165173).
- Improve long descriptions of some script warnings.
- Fix command output parsing in non-English locales.
- Import Enrico's latest DocFilesCheck (with some local tweaks).
- Use rm instead of %exclude.
Wed Nov 16 2005 Ville Skyttä <ville.skytta at iki.fi>
- Add DocFilesCheck from Enrico Scholz.
Sat Sep 3 2005 Ville Skyttä <ville.skytta at iki.fi>
- Improve accuracy of doc, info and games path regexps.
- Improve error message when invoked on non-rpm files.
- Filter more Mandriva specific warnings.
2005-11-20 21:21:02 +00:00

18 lines
808 B
Diff

--- FilesCheck.py 10 Aug 2005 01:46:30 -0000 1.88
+++ FilesCheck.py 21 Aug 2005 07:42:30 -0000
@@ -151,3 +151,3 @@
points_regex=re.compile('^../(.*)')
-doc_regex=re.compile('^/usr/(doc|man|info)|^/usr/share/(doc|man|info)')
+doc_regex=re.compile('^/usr(/share)?/(doc|man|info)/')
bin_regex=re.compile('^(/usr)?/s?bin/')
@@ -160,3 +160,3 @@
depmod_regex=re.compile('^[^#]*depmod', re.MULTILINE)
-info_regex=re.compile('^/usr/share/info')
+info_regex=re.compile('^/usr/share/info/')
install_info_regex=re.compile('^[^#]*install-info', re.MULTILINE)
@@ -165,3 +165,3 @@
htaccess_regex=re.compile('\.htaccess$')
-games_path_regex=re.compile('/usr/(lib/)?/games')
+games_path_regex=re.compile('/usr(/lib(64)?)?/games/')
games_group_regex=re.compile(Config.getOption('RpmGamesGroups', DEFAULT_GAMES_GROUPS))