2009-02-26 18:32:29 +01:00
|
|
|
also detect RCS files
|
2009-08-28 22:12:54 +02:00
|
|
|
Index: FilesCheck.py
|
2009-02-26 18:32:29 +01:00
|
|
|
===================================================================
|
2009-08-28 22:12:54 +02:00
|
|
|
--- FilesCheck.py.orig
|
|
|
|
+++ FilesCheck.py
|
2010-10-14 14:32:03 +02:00
|
|
|
@@ -664,7 +664,7 @@ ldconfig_regex = re.compile('^[^#]*ldcon
|
2009-08-28 22:12:54 +02:00
|
|
|
depmod_regex = re.compile('^[^#]*depmod', re.MULTILINE)
|
|
|
|
install_info_regex = re.compile('^[^#]*install-info', re.MULTILINE)
|
|
|
|
perl_temp_file_regex = re.compile('.*perl.*/(\.packlist|perllocal\.pod)$')
|
|
|
|
-scm_regex = re.compile('/CVS/[^/]+$|/\.(bzr|cvs|git|hg)ignore$|/\.hgtags$|/\.(bzr|git|hg|svn)/|/(\.arch-ids|{arch})/')
|
|
|
|
+scm_regex=re.compile('/(CVS|RCS)(/[^/]+)?$|/\.(bzr|cvs|git|hg)ignore$|/\.hgtags$|/\.(bzr|git|hg|svn)/|/(\.arch-ids|{arch})/|,v$')
|
|
|
|
games_path_regex = re.compile('^/usr(/lib(64)?)?/games/')
|
|
|
|
games_group_regex = re.compile(Config.getOption('RpmGamesGroups', DEFAULT_GAMES_GROUPS))
|
|
|
|
dangling_exceptions = Config.getOption('DanglingSymlinkExceptions', DEFAULT_DANGLING_EXCEPTIONS)
|