2010-04-28 22:41:49 +02:00
|
|
|
Index: FilesCheck.py
|
|
|
|
===================================================================
|
|
|
|
--- FilesCheck.py.orig
|
2008-04-17 04:52:37 +02:00
|
|
|
+++ FilesCheck.py
|
2010-10-14 14:32:03 +02:00
|
|
|
@@ -685,7 +685,7 @@ manifest_perl_regex = re.compile('^/usr/
|
2009-08-21 18:19:06 +02:00
|
|
|
shebang_regex = re.compile('^#!\s*(\S*)')
|
|
|
|
interpreter_regex = re.compile('^/(usr/)?(s?bin|games|libexec(/.+)?|(lib(64)?|share)/.+)/[^/]+$')
|
|
|
|
script_regex = re.compile('^/((usr/)?s?bin|etc/(rc\.d/init\.d|X11/xinit\.d|cron\.(hourly|daily|monthly|weekly)))/')
|
|
|
|
-sourced_script_regex = re.compile('^/etc/(bash_completion\.d|profile\.d)/')
|
|
|
|
+sourced_script_regex = re.compile('^/etc/(bash_completion\.d|profile\.d|/sbin/conf.d)/')
|
|
|
|
use_utf8 = Config.getOption('UseUTF8', Config.USEUTF8_DEFAULT)
|
2010-04-01 16:20:38 +02:00
|
|
|
skipdocs_regex = re.compile(Config.getOption('SkipDocsRegexp', '\.(?:rtf|x?html?|svg|ml[ily]?)$'), re.IGNORECASE)
|
2009-08-21 18:19:06 +02:00
|
|
|
meta_package_regex = re.compile(Config.getOption('MetaPackageRegexp', '^(bundle|task)-'))
|